mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2025-12-20 23:49:41 +01:00
20 lines
323 B
Bash
Executable File
20 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
VER="0.4.4_Pre-alpha"
|
|
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 -arv app $DEB_PATH
|
|
cp -Rv start.py $DEB_PATH
|
|
|
|
cd dist
|
|
fakeroot dpkg-deb --build DemonEditor
|
|
mv DemonEditor.deb DemonEditor_$VER.deb
|
|
|
|
rm -R DemonEditor
|
|
|
|
|
|
|
|
|