mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-01-28 18:30:09 +01:00
19 lines
342 B
Bash
Executable File
19 lines
342 B
Bash
Executable File
#!/bin/bash
|
|
VER="2.2.2_Beta"
|
|
B_PATH="dist/DemonEditor"
|
|
DEB_PATH="$B_PATH/usr/share/demoneditor"
|
|
|
|
mkdir -p $B_PATH
|
|
cp -TRv deb $B_PATH
|
|
rsync --exclude=app/ui/lang --exclude=app/ui/icons --exclude=__pycache__ -arv ../../app $DEB_PATH
|
|
|
|
cd dist
|
|
fakeroot dpkg-deb --build DemonEditor
|
|
mv DemonEditor.deb DemonEditor_$VER.deb
|
|
|
|
rm -R DemonEditor
|
|
|
|
|
|
|
|
|