mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
15 lines
288 B
Bash
15 lines
288 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
VERSION=`cat version`
|
||
|
|
||
|
# clean up from last build
|
||
|
rm -r build dist
|
||
|
|
||
|
# build binary package
|
||
|
python setup.py bdist_rpm --requires="python-flask, python-stem, pywebkitgtk"
|
||
|
|
||
|
# install it
|
||
|
echo ""
|
||
|
echo "To install, run:"
|
||
|
echo "sudo yum install dist/onionshare-$VERSION-1.noarch.rpm"
|