Skip to content

Instantly share code, notes, and snippets.

@waffle2k
Created April 10, 2014 15:13
Show Gist options
  • Save waffle2k/10392571 to your computer and use it in GitHub Desktop.
Save waffle2k/10392571 to your computer and use it in GitHub Desktop.
Install Flingo from git source to a package on Debian systems
#!/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