Last active
December 25, 2015 23:46
-
-
Save stuaxo/9ea405006f389564a363 to your computer and use it in GitHub Desktop.
generate pubsub debs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir stdeb-pubsub | |
pushd stdeb-pubsub | |
virtualenv env | |
git clone https://github.com/nehz/pubsub | |
pushd pubsub | |
../env/bin/pip install stdeb | |
../env/bin/python setup.py --command-packages=stdeb.command sdist_dsc --with-python2=True --with-python3=True --no-python2-scripts=True bdist_deb | |
popd | |
popd | |
echo "deb files:" | |
find . | grep '\.deb$' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment