aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-12-16 20:13:29 -0800
committerAdam Vandenberg2013-12-16 20:13:29 -0800
commit44811bc30ea3c521924c5ba6a9a7f77dd7147261 (patch)
tree141fd9a5ffb972f096dac951f0d700b2b7aa7b33 /Library/Formula
parent4d5b45543a12bf1897d0dae21e476e429c8447db (diff)
downloadhomebrew-44811bc30ea3c521924c5ba6a9a7f77dd7147261.tar.bz2
Move nlopt to homebrew-science
Closes #24348.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/nlopt.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/nlopt.rb b/Library/Formula/nlopt.rb
deleted file mode 100644
index b0c65cbeb..000000000
--- a/Library/Formula/nlopt.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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