Skip to content

Instantly share code, notes, and snippets.

@darkoperator
Created July 26, 2011 00:43
Show Gist options
  • Save darkoperator/1105645 to your computer and use it in GitHub Desktop.
Save darkoperator/1105645 to your computer and use it in GitHub Desktop.
require 'formula'
class Libdnet < Formula
url 'http://libdnet.googlecode.com/files/libdnet-1.12.tgz'
homepage 'http://code.google.com/p/libdnet/'
md5 '9253ef6de1b5e28e9c9a62b882e44cc9'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
system "cd python && /usr/bin/python setup.py install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment