blob: b0c65cbeb61782d28d77d2afb8ec14d41fb9fc5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|