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>
This commit is contained in:
parent
309668296c
commit
44359f1b76
1 changed files with 19 additions and 0 deletions
19
Formula/libfixbuf.rb
Normal file
19
Formula/libfixbuf.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue