090d39f112
I modified the formula so that the url now points to version 2.4 released November 2, 2013. In addition, I added the option to build using C++11 mode. Closes Homebrew/homebrew#24216. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
369 B
Ruby
16 lines
369 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.4.tar.gz'
|
|
sha1 'e766f4c49fa5923fb45220f278c01c04c38fc369'
|
|
|
|
option :cxx11
|
|
|
|
def install
|
|
ENV.cxx11 if build.cxx11?
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|