mirror of
https://github.com/torproject/torbrowser-launcher.git
synced 2024-11-23 17:39:52 +00:00
15 lines
339 B
Bash
Executable File
15 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=`cat share/torbrowser-launcher/version`
|
|
|
|
# clean up from last build
|
|
rm -r build dist
|
|
|
|
# build binary package
|
|
python setup.py bdist_rpm --requires="python-psutil, python-twisted, gnupg, fakeroot, pygtk2"
|
|
|
|
# install it
|
|
echo ""
|
|
echo "To install, run:"
|
|
echo "sudo yum install dist/torbrowser-launcher-$VERSION-1.noarch.rpm"
|