diff options
| author | Lars Eggert | 2013-09-26 11:55:30 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-08 07:45:12 -0700 |
| commit | 17712c4f85edf5a1f4677e8bc4f199db5da2c5f1 (patch) | |
| tree | edcde358f4e1d09f6a31c280afdf4b45b0caed13 /Library | |
| parent | 06bb1eedfc76ab5645c56a3686d0f7021184340a (diff) | |
| download | homebrew-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.rb | 18 |
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 |
