mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-02-06 23:00:36 +01:00
20 lines
300 B
Bash
Executable File
20 lines
300 B
Bash
Executable File
#!/bin/env bash
|
|
VER="0.2.2_Pre-alpha"
|
|
B_PATH="dist/DemonEditor"
|
|
DEB_PATH="$B_PATH/usr/share/demoneditor"
|
|
|
|
mkdir -p $B_PATH
|
|
cp -TRv deb $B_PATH
|
|
cp -Rv 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
|
|
|
|
|
|
|
|
|