starting debian/fedora packaging (#25)

This commit is contained in:
Micah Lee 2014-06-10 00:17:02 -04:00
parent 2af581beb3
commit ecaf2a97a3
3 changed files with 32 additions and 0 deletions

14
build_deb.sh Executable file
View 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
View 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
View File

@ -0,0 +1,4 @@
[DEFAULT]
Package: onionshare
Depends: python-flask, python-stem, python-webkit
Suite: trusty