Skip to content

Instantly share code, notes, and snippets.

@eyliu
Created July 27, 2011 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyliu/1109473 to your computer and use it in GitHub Desktop.
Save eyliu/1109473 to your computer and use it in GitHub Desktop.
Homebrew formula for NLopt
require 'formula'
class Nlopt < Formula
url 'http://ab-initio.mit.edu/nlopt/nlopt-2.2.4.tar.gz'
homepage 'http://ab-initio.mit.edu/wiki/index.php/NLopt'
md5 '9c60c6380a10c6d2a06895f0e8756d4f'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-shared"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment