libdnet 1.12

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Fix man path
master
achiu 2010-05-05 20:07:06 -07:00 committed by Adam Vandenberg
parent 652b1c4b82
commit 2d867ee7d9
1 changed files with 14 additions and 0 deletions

14
Formula/libdnet.rb Normal file
View File

@ -0,0 +1,14 @@
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"
end
end