Files
DemonEditor/build-deb.sh

19 lines
319 B
Bash
Raw Normal View History

2018-02-27 14:55:03 +03:00
#!/bin/bash
2020-02-28 21:10:13 +03:00
VER="0.4.8_Pre-alpha"
2018-01-08 13:52:05 +03:00
B_PATH="dist/DemonEditor"
DEB_PATH="$B_PATH/usr/share/demoneditor"
mkdir -p $B_PATH
cp -TRv deb $B_PATH
2020-01-15 07:26:59 +03:00
rsync --exclude=app/ui/lang --exclude=app/ui/icons -arv app $DEB_PATH
2018-01-08 13:52:05 +03:00
cd dist
fakeroot dpkg-deb --build DemonEditor
mv DemonEditor.deb DemonEditor_$VER.deb
rm -R DemonEditor