50d0c1eb29
* Clean up a few things in various setup function * Add Launchpad-related setting to Debian build function * Add signature feature to package builder and fix error in debian/copyright * Update documentation * Update README
23 lines
608 B
Bash
Executable File
23 lines
608 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -f setup.py ]; then
|
|
echo "Must be called from the root folder of the source"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo " Building Minimal Packages"
|
|
echo "================================================================================"
|
|
echo ""
|
|
python3 setup.py minimal-zip --target-win
|
|
python3 setup.py minimal-zip --target-linux
|
|
python3 setup.py minimal-zip --target-darwin
|
|
|
|
echo ""
|
|
echo " Building Linux Packages"
|
|
echo "================================================================================"
|
|
echo ""
|
|
python3 setup.py build-deb --sign
|
|
python3 setup.py build-ubuntu --sign --first
|