2011-09-15 22:47:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libflowmanager < Formula
|
|
|
|
homepage 'http://research.wand.net.nz/software/libflowmanager.php'
|
2012-08-08 15:39:28 +00:00
|
|
|
url 'http://research.wand.net.nz/software/libflowmanager/libflowmanager-2.0.2.tar.gz'
|
|
|
|
sha1 '77efc29fc9442bd330c00615f1f2657b30456d4f'
|
2011-09-15 22:47:12 +00:00
|
|
|
|
|
|
|
depends_on 'libtrace'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|