summaryrefslogtreecommitdiff
path: root/homebrew/nlopt
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-20 20:49:46 -0500
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-23 20:18:47 -0500
commit12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch)
tree352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/nlopt
parenta2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff)
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/nlopt')
-rw-r--r--homebrew/nlopt/.beer44
-rw-r--r--homebrew/nlopt/.make.sh-auto10
-rw-r--r--homebrew/nlopt/_metadata/description1
-rw-r--r--homebrew/nlopt/_metadata/homepage1
-rw-r--r--homebrew/nlopt/_metadata/name1
-rw-r--r--homebrew/nlopt/_metadata/version1
-rwxr-xr-xhomebrew/nlopt/download.sh1
7 files changed, 59 insertions, 0 deletions
diff --git a/homebrew/nlopt/.beer b/homebrew/nlopt/.beer
new file mode 100644
index 000000000..e182bc2e3
--- /dev/null
+++ b/homebrew/nlopt/.beer
@@ -0,0 +1,44 @@
+{
+ "name": "Nlopt",
+ "description": "Free/open-source library for nonlinear optimization",
+ "url": "https://github.com/stevengj/nlopt/releases/download/nlopt-2.4.2/nlopt-2.4.2.tar.gz",
+ "mirror": null,
+ "homepage": "https://nlopt.readthedocs.io/",
+ "depends": [
+ {
+ "depend": "cmake",
+ "build-depend": true
+ },
+ {
+ "depend": "swig",
+ "build-depend": true
+ },
+ {
+ "depend": "numpy",
+ "build-depend": false
+ }
+ ],
+ "resource": [],
+ "conflicts": [],
+ "patches": [],
+ "install": [
+ "ENV.deparallelize",
+ "if build.head?",
+ "system \"cmake\", \".\", *std_cmake_args,",
+ "\"-DBUILD_MATLAB=OFF\",",
+ "\"-DBUILD_OCTAVE=OFF\",",
+ "\"-DWITH_CXX=ON\"",
+ "else",
+ "system \"./configure\", \"--prefix=#{prefix}\",",
+ "\"--enable-shared\",",
+ "\"--with-cxx\",",
+ "\"--without-octave\"",
+ "system \"make\"",
+ "end",
+ "system \"make\", \"install\"",
+ "%w[0.dylib dylib a].each do |suffix|",
+ "lib.install_symlink \"#{lib}/libnlopt_cxx.#{suffix}\" => \"#{lib}/libnlopt.#{suffix}\""
+ ],
+ "version": "2.4.2",
+ "file": "nlopt.rb"
+} \ No newline at end of file
diff --git a/homebrew/nlopt/.make.sh-auto b/homebrew/nlopt/.make.sh-auto
new file mode 100644
index 000000000..2e3445ba4
--- /dev/null
+++ b/homebrew/nlopt/.make.sh-auto
@@ -0,0 +1,10 @@
+pkg:setup
+ENV.deparallelize
+cmake . -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} -DBUILD_MATLAB=OFF -DBUILD_OCTAVE=OFF -DWITH_CXX=ON
+else
+pkg:configure --enable-shared --with-cxx --without-octave
+make
+end
+make DESTDIR=${PKG_DEST} install
+%w[0.dylib dylib a].each do |suffix|
+lib.install_symlink "#{lib}/libnlopt_cxx.#{suffix}" => "#{lib}/libnlopt.#{suffix}"
diff --git a/homebrew/nlopt/_metadata/description b/homebrew/nlopt/_metadata/description
new file mode 100644
index 000000000..0866b9bf2
--- /dev/null
+++ b/homebrew/nlopt/_metadata/description
@@ -0,0 +1 @@
+Free/open-source library for nonlinear optimization
diff --git a/homebrew/nlopt/_metadata/homepage b/homebrew/nlopt/_metadata/homepage
new file mode 100644
index 000000000..82e81decd
--- /dev/null
+++ b/homebrew/nlopt/_metadata/homepage
@@ -0,0 +1 @@
+https://nlopt.readthedocs.io/
diff --git a/homebrew/nlopt/_metadata/name b/homebrew/nlopt/_metadata/name
new file mode 100644
index 000000000..801ac58c4
--- /dev/null
+++ b/homebrew/nlopt/_metadata/name
@@ -0,0 +1 @@
+Nlopt
diff --git a/homebrew/nlopt/_metadata/version b/homebrew/nlopt/_metadata/version
new file mode 100644
index 000000000..8e8299dcc
--- /dev/null
+++ b/homebrew/nlopt/_metadata/version
@@ -0,0 +1 @@
+2.4.2
diff --git a/homebrew/nlopt/download.sh b/homebrew/nlopt/download.sh
new file mode 100755
index 000000000..88637e9bd
--- /dev/null
+++ b/homebrew/nlopt/download.sh
@@ -0,0 +1 @@
+wget https://github.com/stevengj/nlopt/releases/download/nlopt-2.4.2/nlopt-2.4.2.tar.gz \ No newline at end of file