NotePostApp/scripts/debian_build.sh

12 lines
403 B
Bash
Raw Normal View History

#!/bin/bash
# $1 is the binary location, $2 is the arch, $3 is the svg icon
mkdir out
2019-01-23 22:58:18 -07:00
sed -i '/Architecture:/d' debian/DEBIAN/control
echo "Architecture: $2" >> debian/DEBIAN/control
rm -rf debian/usr/lib/notepost
2019-01-09 01:50:29 -07:00
mv "$1com.netsyms.NotePostApp" "$1notepost"
2019-01-23 22:58:18 -07:00
mkdir -p debian/usr/lib
rsync -rv "$1" debian/usr/lib/notepost
cp "$3" debian/usr/lib/notepost/logo.svg
dpkg-deb -b debian "out/notepost_$2.deb"