flowgrind 0.6.1

Closes Homebrew/homebrew#22842.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Lars Eggert 2013-09-26 11:55:30 +01:00 committed by Adam Vandenberg
parent b10c9d3878
commit cb44f7db43
1 changed files with 18 additions and 0 deletions

18
Formula/flowgrind.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Flowgrind < Formula
homepage 'https://launchpad.net/flowgrind'
url 'https://launchpad.net/flowgrind/trunk/flowgrind-0.6.1/+download/flowgrind-0.6.1.tar.bz2'
sha1 'aaa4714dbbe2bb8d5eb249a0d526f4bc7023db2c'
depends_on 'gsl'
depends_on 'xmlrpc-c'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end