mirror of
https://github.com/torproject/torbrowser-launcher.git
synced 2024-11-23 09:29:42 +00:00
15 lines
373 B
Bash
Executable File
15 lines
373 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$(cat share/torbrowser-launcher/version)
|
|
|
|
# clean up from last build
|
|
rm -r build dist
|
|
|
|
# build binary package
|
|
python3 setup.py bdist_rpm --requires="python3-qt5, python3-gpg, python3-requests, python3-pysocks, python3-packaging, gnupg2"
|
|
|
|
# install it
|
|
echo ""
|
|
echo "To install, run:"
|
|
echo "sudo dnf install dist/torbrowser-launcher-$VERSION-1.noarch.rpm"
|