mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-02 13:22:21 -04:00
starting debian/fedora packaging (#25)
This commit is contained in:
parent
2af581beb3
commit
ecaf2a97a3
3 changed files with 32 additions and 0 deletions
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"
|
4
stdeb.cfg
Normal file
4
stdeb.cfg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[DEFAULT]
|
||||||
|
Package: onionshare
|
||||||
|
Depends: python-flask, python-stem, python-webkit
|
||||||
|
Suite: trusty
|
Loading…
Add table
Add a link
Reference in a new issue