aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorLars Eggert2013-09-26 11:55:30 +0100
committerAdam Vandenberg2013-10-08 07:45:12 -0700
commit17712c4f85edf5a1f4677e8bc4f199db5da2c5f1 (patch)
treeedcde358f4e1d09f6a31c280afdf4b45b0caed13 /Library
parent06bb1eedfc76ab5645c56a3686d0f7021184340a (diff)
downloadhomebrew-17712c4f85edf5a1f4677e8bc4f199db5da2c5f1.tar.bz2
flowgrind 0.6.1
Closes #22842. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/flowgrind.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/flowgrind.rb b/Library/Formula/flowgrind.rb
new file mode 100644
index 000000000..e0c2b0367
--- /dev/null
+++ b/Library/Formula/flowgrind.rb
@@ -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