onionshare/install/build_rpm.sh

18 lines
374 B
Bash
Raw Normal View History

#!/bin/bash
2014-06-10 00:17:02 -04:00
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
rm -r build dist >/dev/null 2>&1
2014-06-10 00:17:02 -04:00
# build binary package
2014-06-20 00:01:03 -04:00
python setup.py bdist_rpm --requires="python-flask, python-stem, pyqt4"
2014-06-10 00:17:02 -04:00
# install it
echo ""
echo "To install, run:"
echo "sudo yum install dist/onionshare-$VERSION-1.noarch.rpm"