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
|
|
|
|
2017-02-21 19:59:14 -05:00
|
|
|
VERSION=`cat share/version.txt`
|
2014-06-10 00:17:02 -04:00
|
|
|
|
|
|
|
# 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
|
2016-02-12 17:34:19 -05:00
|
|
|
python3 setup.py --command-packages=stdeb.command bdist_deb
|
2014-06-10 00:17:02 -04:00
|
|
|
|
2015-05-28 05:52:27 -04:00
|
|
|
# return install instructions if onionshare builds properly
|
2015-06-16 18:42:39 -04:00
|
|
|
if [[ $? -eq 0 ]]; then
|
2017-05-19 00:36:28 -04:00
|
|
|
# The build process in stdeb's util.py renames .dev to ~dev
|
|
|
|
# Adjust it here for the purposes of displaying the right filename
|
|
|
|
VERSION="${VERSION/.dev/~dev}"
|
2017-05-19 00:34:05 -04:00
|
|
|
echo ""
|
2015-05-28 05:52:27 -04:00
|
|
|
echo "To install, run:"
|
|
|
|
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
|
2015-06-16 18:42:39 -04:00
|
|
|
else
|
|
|
|
echo "OnionShare failed to build!"
|
2017-05-19 00:42:23 -04:00
|
|
|
exit 1
|
2015-05-28 05:52:27 -04:00
|
|
|
fi
|