mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 07:05:56 +00:00
add .deb creation script
This commit is contained in:
19
utils/create-release-deb.sh
Executable file
19
utils/create-release-deb.sh
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh -ei
|
||||
|
||||
if [ -z $1 ]; then
|
||||
echo usage: $0 VERSION
|
||||
exit 1
|
||||
fi
|
||||
|
||||
git clone . dpkg-tmp/tt-rss
|
||||
cd dpkg-tmp/tt-rss
|
||||
git co $1
|
||||
|
||||
debuild -i -us -uc
|
||||
|
||||
cd ..
|
||||
|
||||
reprepro -b /var/www/apt include unstable tt-rss*_i386.changes
|
||||
|
||||
#cd ..
|
||||
#rm -rf dpkg-tmp
|
||||
Reference in New Issue
Block a user