onionshare/build_deb.sh

22 lines
472 B
Bash
Raw Normal View History

2015-05-28 05:52:27 -04:00
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
cd $DIR
2014-06-10 00:17:02 -04:00
VERSION=`cat version`
# clean up from last build
2015-05-28 05:52:27 -04:00
rm -r deb_dist >/dev/null 2>&1
2014-06-10 00:17:02 -04:00
# build binary package
python setup.py --command-packages=stdeb.command bdist_deb
2015-05-28 05:52:27 -04:00
# return install instructions if onionshare builds properly
if [$? -eq 0] then
echo ""
echo "To install, run:"
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
else
echo "OnionShare failed to build!"
fi