homebrew-core/Formula/nlopt.rb
Brett Koonce 6532676e41 nlopt 2.3
Closes Homebrew/homebrew#13833.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-08-02 00:00:33 -05:00

13 lines
322 B
Ruby

require 'formula'
class Nlopt < Formula
homepage 'http://ab-initio.mit.edu/wiki/index.php/NLopt'
url 'http://ab-initio.mit.edu/nlopt/nlopt-2.3.tar.gz'
sha1 '28253b65187d9d1d4c75e96310d8ee8c9c5f3cfc'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end