summaryrefslogtreecommitdiff
path: root/build_deb.sh
blob: 5461283df01d2dfd8ab0c769b270d98df88cc23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"