aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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