Created
April 10, 2014 15:13
-
-
Save waffle2k/10392571 to your computer and use it in GitHub Desktop.
Install Flingo from git source to a package on Debian systems
This file contains 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 | |
set -e | |
cd /tmp | |
sudo apt-get install devscripts | |
[ ! -d Flingo ] && git clone https://github.com/petermblair/Flingo.git | |
cd Flingo | |
git branch | grep -q dmarc-example || git checkout -b dmarc-example f4f9cb7ed | |
make get-deps package | |
echo "There should be a flingo*.deb file that you can install now" | |
echo "" | |
echo "execute: sudo dpkg -i flingo*.deb" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment