add tt-rss-plugin-wallabag

This commit is contained in:
thomas 2022-09-29 03:06:31 +02:00
parent cea67adec0
commit 779ffb0c3c
4 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#!/bin/bash
APP=tt-rss-plugin-wallabag
VERSION=$(date +%Y%m.%d.%H%M)
GIT_VERSION=2.0.0
DEB_VERSION=$VERSION
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=1
DEPOT=https://github.com/joshp23/ttrss-to-wallabag-v2.git
STEP="base_package_upgrade get_git_source makedeb"
makedeb(){
PATH_DEB=/tmp/src/rootfs
mkdir -p ${PATH_DEB}/usr/share/tt-rss/plugins.local/
cp -fr /tmp/${APP}/wallabag_v2 ${PATH_DEB}/usr/share/tt-rss/plugins.local/wallabag_v2
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
}