diff options
| author | achiu | 2010-05-05 20:07:06 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-09 21:30:22 -0700 |
| commit | ae809237a625c3a4d912b17c7aeef22b1a2c8fa9 (patch) | |
| tree | 7f90757dd80a9de60ffc9fa31d5d4d1c85d79a92 /Library/Formula | |
| parent | 65b75cfb0fbffb010e66f48bb51dfb9b92774353 (diff) | |
| download | homebrew-ae809237a625c3a4d912b17c7aeef22b1a2c8fa9.tar.bz2 | |
libdnet 1.12
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Fix man path
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libdnet.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libdnet.rb b/Library/Formula/libdnet.rb new file mode 100644 index 000000000..297924c0d --- /dev/null +++ b/Library/Formula/libdnet.rb @@ -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 |
