Files
DemonEditor/build/linux/build-deb.sh

18 lines
463 B
Bash
Raw Normal View History

2018-02-27 14:55:03 +03:00
#!/bin/bash
2025-08-07 22:02:38 +03:00
VER="3.13.2_Beta"
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
2023-05-09 22:38:59 +03:00
rsync -arv ../../app/ui/lang/* "$B_PATH/usr/share/locale"
2021-10-17 11:29:23 +03:00
rsync --exclude=app/ui/lang --exclude=app/ui/icons --exclude=__pycache__ -arv ../../app $DEB_PATH
2023-02-11 13:06:13 +03:00
rsync --exclude=__pycache__ -arv ../../extensions $DEB_PATH
2018-01-08 13:52:05 +03:00
cd dist
fakeroot dpkg-deb -Zxz --build DemonEditor
2018-01-08 13:52:05 +03:00
mv DemonEditor.deb DemonEditor_$VER.deb
rm -R DemonEditor