2021-07-04 00:53:16 -06:00
|
|
|
#!/bin/bash
|
|
|
|
# $1 is the app location, $2 is the svg icon, $3 is the version number
|
|
|
|
mkdir -p out
|
|
|
|
rm -rf debian/usr/share/ipentool
|
2021-07-21 01:01:05 -06:00
|
|
|
|
2021-07-04 00:53:16 -06:00
|
|
|
mkdir -p debian/usr/share/ipentool
|
|
|
|
mkdir -p debian/usr/share/doc/ipentool
|
2021-07-21 01:01:05 -06:00
|
|
|
|
2021-07-04 00:53:16 -06:00
|
|
|
rsync -rv "$1" debian/usr/share/ipentool
|
2021-07-16 15:28:35 -06:00
|
|
|
sed -i "s/VERSION/$3/" debian/DEBIAN/control
|
2021-07-04 00:53:16 -06:00
|
|
|
cp debian/DEBIAN/copyright debian/usr/share/doc/ipentool/
|
|
|
|
cp "$2" debian/usr/share/ipentool/logo.svg
|
2021-07-21 01:01:05 -06:00
|
|
|
|
2021-07-21 01:07:00 -06:00
|
|
|
SIZE=$(du -s --apparent-size debian | cut -f1)
|
2021-07-21 01:01:05 -06:00
|
|
|
sed -i "s/INSTALLEDSIZE/$SIZE/" debian/DEBIAN/control
|
2021-07-04 00:53:16 -06:00
|
|
|
dpkg-deb -b debian "out/ipentool_$3_all.deb"
|