blob: 23180b9396081cb4d9482225945aab96e807780e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/usr/bin/env sh
#
# Install onionshare
#
# https://onionshare.org
# https://github.com/micahflee/onionshare
# Parameters
SHARE="$1"
LIB="$2"
# Include basic functions
. $LIB/trashman/functions || exit 1
. $LIB/trashman/debian || exit 1
# Requirements
trashman_apt_install build-essential fakeroot python3-all python3-stdeb dh-python python3-flask python3-stem python3-pyqt5 python-nautilus python3-pytest tor obfs4proxy git python3-pip python3-nacl python3-socks
# Install python3-sha3
pip3 install sha3
# Go to working folder
mkdir -p $HOME/.local/share
cd $HOME/.local/share
# Get the code
if [ -d "onionshare" ]; then
cd onionshare && git pull || exit 1
else
git clone https://github.com/micahflee/onionshare && cd onionshare || exit 1
fi
# Create symlink to scripts
mkdir -p $HOME/.local/bin
cd $HOME/.local/bin
#ln -sf $HOME/.local/share/onionshare/dev_scripts/onionshare
#ln -sf $HOME/.local/share/onionshare/dev_scripts/onionshare-gui
echo "cd $HOME/.local/share/onionshare/dev_scripts && ./onionshare" > onionshare
echo "cd $HOME/.local/share/onionshare/dev_scripts && ./onionshare-gui" > onionshare-gui
chmod +x onionshare onionshare-gui
|