First commit

This commit is contained in:
Ivan Vazhenin
2023-03-12 16:40:33 +03:00
commit 54fa589261
44 changed files with 3339 additions and 0 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
./pre_build.sh
if [ -f /etc/debian_version ]; then
echo 'Сборка deb-пакета'
python setup.py --command-packages=stdeb.command bdist_deb
else
echo 'Сборка rpm-пакета'
python setup.py bdist_rpm
fi
exit 0