debmaker/ressources/tt-rss-plugin-wallabag/debmaker

22 lines
612 B
Plaintext
Raw Normal View History

2022-09-29 03:06:31 +02:00
#!/bin/bash
APP=tt-rss-plugin-wallabag
2022-10-30 07:44:48 +01:00
VERSION=2.0.1
GIT_VERSION=$VERSION
2022-09-29 03:06:31 +02:00
DEB_VERSION=$VERSION
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=1
2022-10-30 07:44:48 +01:00
#DEPOT=https://github.com/joshp23/ttrss-to-wallabag-v2.git
DEPOT=https://github.com/tomamplius/ttrss-to-wallabag-v2
2022-09-29 03:06:31 +02:00
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
}