2012-05-06 16:15:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Nlopt < Formula
|
|
|
|
homepage 'http://ab-initio.mit.edu/wiki/index.php/NLopt'
|
2012-07-31 21:49:13 +00:00
|
|
|
url 'http://ab-initio.mit.edu/nlopt/nlopt-2.3.tar.gz'
|
|
|
|
sha1 '28253b65187d9d1d4c75e96310d8ee8c9c5f3cfc'
|
2012-05-06 16:15:17 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|