diff options
| author | Douglas Creager | 2010-06-10 21:05:58 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-11 09:56:46 -0700 |
| commit | 2dd9512b08c30384e13a5aad013ba59e7bc29029 (patch) | |
| tree | 19f922aadf57afec557dd7a5d27b331b41144213 /Library/Formula | |
| parent | 0b3608b341fdc6a8eff8baea9f30e012622c9d2f (diff) | |
| download | homebrew-2dd9512b08c30384e13a5aad013ba59e7bc29029.tar.bz2 | |
libfixbuf 0.8.0
libfixbuf provides an implementation of the IPFIX Protocol as a C
library, for building IPFIX Collecting and Exporting Processes.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libfixbuf.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/libfixbuf.rb b/Library/Formula/libfixbuf.rb new file mode 100644 index 000000000..737b06e44 --- /dev/null +++ b/Library/Formula/libfixbuf.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Libfixbuf <Formula + url 'http://tools.netsa.cert.org/releases/libfixbuf-0.8.0.tar.gz' + homepage 'http://tools.netsa.cert.org/fixbuf/' + md5 '7c22a5b376a3661c7bb79ca2972c0173' + + depends_on 'glib' + + def install + system "./configure", + "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--mandir=#{man}" + system "make" + system "make install" + end +end |
