blob: b13aaa491806f513528e6b1d138cac20a456cb0b (
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.3.tar.gz'
  sha1 '28253b65187d9d1d4c75e96310d8ee8c9c5f3cfc'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end
  |