aboutsummaryrefslogtreecommitdiff
path: root/install/build_rpm.sh
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-10-12 22:40:55 -0700
committerMicah Lee <micah@micahflee.com>2020-10-12 22:40:55 -0700
commitf4abcf1be9122a28005dc3e0949bf5952192e982 (patch)
tree0c6fdb71401ac294403fe87730ef6a73b0d7498a /install/build_rpm.sh
parentb81a55f546ffaf00586e43cdc279b967da096e4f (diff)
downloadonionshare-f4abcf1be9122a28005dc3e0949bf5952192e982.tar.gz
onionshare-f4abcf1be9122a28005dc3e0949bf5952192e982.zip
Add onionshare CLI to cli folder, move GUI to desktop folder, and start refactoring it to work with briefcase
Diffstat (limited to 'install/build_rpm.sh')
-rwxr-xr-xinstall/build_rpm.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/install/build_rpm.sh b/install/build_rpm.sh
deleted file mode 100755
index 145f0a3c..00000000
--- a/install/build_rpm.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
-cd $DIR
-
-VERSION=`cat share/version.txt`
-
-# clean up from last build
-rm -r build dist >/dev/null 2>&1
-
-# build binary package
-python3 setup.py bdist_rpm --requires="python3-flask, python3-flask-httpauth, python3-stem, python3-qt5, python3-crypto, python3-pysocks, nautilus-python, tor, obfs4, python3-psutil, python3-socketio, python3-flask-socketio, python3-qrcode"
-
-# install it
-echo ""
-echo "To install, run:"
-echo "sudo dnf install dist/onionshare-$VERSION-1.noarch.rpm"