blob: 0dc330932973460fed55046d881d97b314bb5507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Nlopt < Formula
homepage 'http://ab-initio.mit.edu/wiki/index.php/NLopt'
url 'http://ab-initio.mit.edu/nlopt/nlopt-2.2.4.tar.gz'
sha1 'a97fcffb0c3aaf57aab5aadb9487e99b09dbee54'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|