mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
starting debian/fedora packaging (#25)
This commit is contained in:
parent
2af581beb3
commit
ecaf2a97a3
14
build_deb.sh
Executable file
14
build_deb.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
VERSION=`cat version`
|
||||
|
||||
# clean up from last build
|
||||
rm -r deb_dist
|
||||
|
||||
# build binary package
|
||||
python setup.py --command-packages=stdeb.command bdist_deb
|
||||
|
||||
# install it
|
||||
echo ""
|
||||
echo "To install, run:"
|
||||
echo "sudo dpkg -i deb_dist/onionshare_$VERSION-1_all.deb"
|
14
build_rpm.sh
Executable file
14
build_rpm.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
VERSION=`cat version`
|
||||
|
||||
# clean up from last build
|
||||
rm -r build dist
|
||||
|
||||
# build binary package
|
||||
python setup.py bdist_rpm --requires="python-flask, python-stem, pywebkitgtk"
|
||||
|
||||
# install it
|
||||
echo ""
|
||||
echo "To install, run:"
|
||||
echo "sudo yum install dist/onionshare-$VERSION-1.noarch.rpm"
|
Loading…
Reference in New Issue
Block a user