22 lines
612 B
Bash
Executable File
22 lines
612 B
Bash
Executable File
#!/bin/bash
|
|
|
|
APP=tt-rss-plugin-wallabag
|
|
VERSION=2.0.1
|
|
GIT_VERSION=$VERSION
|
|
DEB_VERSION=$VERSION
|
|
DEBIAN_VERSION_CODENAME=bullseye
|
|
IMAGE_SIZE=1
|
|
#DEPOT=https://github.com/joshp23/ttrss-to-wallabag-v2.git
|
|
DEPOT=https://github.com/tomamplius/ttrss-to-wallabag-v2
|
|
|
|
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
|
|
}
|