mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-10 11:47:27 -03:00
finished linux packaging instructions (fixes #25)
This commit is contained in:
parent
3eb2beee5c
commit
8b179384b0
1 changed files with 10 additions and 7 deletions
17
BUILD.md
17
BUILD.md
|
@ -1,21 +1,22 @@
|
|||
# Building OnionShare
|
||||
|
||||
For GNU/Linux and OSX, get a copy of the source code:
|
||||
## GNU/Linux
|
||||
|
||||
Start by getting a copy of the source code:
|
||||
|
||||
git clone https://github.com/micahflee/onionshare.git
|
||||
cd onionshare
|
||||
|
||||
## Debian-based GNU/Linux
|
||||
*For .deb-based distros (like Debian, Ubuntu, Linux Mint):*
|
||||
|
||||
## Red Hat-based GNU/Linux
|
||||
sudo apt-get install -y python-all python-stdeb python-flask python-stem python-webkit
|
||||
./build_deb.sh
|
||||
sudo dpkg -i deb_dist/onionshare_*.deb
|
||||
|
||||
Install dependencies and build the RPM:
|
||||
*For .rpm-based distros (Red Hat, Fedora, CentOS):*
|
||||
|
||||
sudo yum install -y rpm-build python-flask python-stem pywebkitgtk
|
||||
./build_rpm.sh
|
||||
|
||||
The RPM will end up in your dist folder. You can install it like this:
|
||||
|
||||
sudo yum install -y dist/onionshare-*.rpm
|
||||
|
||||
## Mac OS X
|
||||
|
@ -30,4 +31,6 @@ Then use pip to install py2app:
|
|||
|
||||
sudo pip install py2app
|
||||
|
||||
## Windows
|
||||
|
||||
*Note: Haven't started figuring this out yet.*
|
||||
|
|
Loading…
Reference in a new issue