diff options
| -rw-r--r-- | Library/Formula/adol-c.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/adol-c.rb b/Library/Formula/adol-c.rb new file mode 100644 index 000000000..16ec73ec6 --- /dev/null +++ b/Library/Formula/adol-c.rb @@ -0,0 +1,14 @@ +require 'formula' + +class AdolC < Formula + url 'http://www.coin-or.org/download/source/ADOL-C/ADOL-C-2.2.1.tgz' + homepage 'http://www.coin-or.org/projects/ADOL-C.xml' + md5 '5fe149865b47f77344ff910702da8b99' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end + +end |
