2019-12-03 16:13:23 -07:00
|
|
|
#!/bin/bash
|
2019-12-04 12:32:43 -07:00
|
|
|
# $1 is the app source location, $2 is the svg icon, $3 is the app version code
|
2019-12-03 16:13:23 -07:00
|
|
|
mkdir -p out
|
|
|
|
rm -rf debian/usr/share/notepost
|
|
|
|
mkdir -p debian/usr/share/notepost
|
|
|
|
mkdir -p debian/usr/share/doc/notepost
|
|
|
|
rsync -rv "$1" debian/usr/share/notepost
|
|
|
|
cp debian/DEBIAN/copyright debian/usr/share/doc/notepost/
|
2019-12-04 12:32:43 -07:00
|
|
|
sed -i "s/Version:\s[0-9.\-]\+/Version: $3+b$BUILD_NUMBER/" debian/DEBIAN/control
|
2019-12-03 16:13:23 -07:00
|
|
|
cp "$2" debian/usr/share/notepost/logo.svg
|
2019-12-04 12:32:43 -07:00
|
|
|
dpkg-deb -b debian "out/notepost_$3+b${BUILD_NUMBER}_all.deb"
|