diff options
author | Michel Zou | 2025-02-05 07:25:33 +0100 |
---|---|---|
committer | Michel Zou | 2025-02-05 07:25:33 +0100 |
commit | 38061e1d9c7bd6cc7b2da8ce7c0d1f7c225ee606 (patch) | |
tree | 497cd94585fd3973226c89873e5feb8f876f534e | |
parent | ef00020b2728fe008303d95d8787b8ac3cdbbefd (diff) | |
download | aur-38061e1d9c7bd6cc7b2da8ce7c0d1f7c225ee606.tar.gz |
2.10.0
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -1,6 +1,6 @@ pkgbase = mingw-w64-nlopt pkgdesc = nonlinear optimization library (mingw-w64) - pkgver = 2.9.0 + pkgver = 2.10.0 pkgrel = 1 url = http://ab-initio.mit.edu/wiki/index.php/NLopt arch = any @@ -10,7 +10,7 @@ pkgbase = mingw-w64-nlopt options = staticlibs options = !buildflags options = !strip - source = https://github.com/stevengj/nlopt/archive/v2.9.0.tar.gz - sha256sums = 6e899e297485e457ec1bf84844de29921aeef674f9d5caf60277df45dca6ff76 + source = https://github.com/stevengj/nlopt/archive/v2.10.0.tar.gz + sha256sums = 506f83a9e778ad4f204446e99509cb2bdf5539de8beccc260a014bd560237be1 pkgname = mingw-w64-nlopt @@ -1,6 +1,6 @@ pkgname=mingw-w64-nlopt -pkgver=2.9.0 +pkgver=2.10.0 pkgrel=1 pkgdesc="nonlinear optimization library (mingw-w64)" arch=(any) @@ -10,14 +10,14 @@ depends=('mingw-w64-crt') makedepends=('mingw-w64-cmake') options=('staticlibs' '!buildflags' '!strip') source=("https://github.com/stevengj/nlopt/archive/v${pkgver}.tar.gz") -sha256sums=('6e899e297485e457ec1bf84844de29921aeef674f9d5caf60277df45dca6ff76') +sha256sums=('506f83a9e778ad4f204446e99509cb2bdf5539de8beccc260a014bd560237be1') _architectures="i686-w64-mingw32 x86_64-w64-mingw32" build() { cd "$srcdir/nlopt-$pkgver" for _arch in ${_architectures}; do - ${_arch}-cmake -DNLOPT_GUILE=OFF -DNLOPT_OCTAVE=OFF -DNLOPT_PYTHON=OFF -DCMAKE_UNITY_BUILD=ON -B build-${_arch} . + ${_arch}-cmake -DNLOPT_GUILE=OFF -DNLOPT_OCTAVE=OFF -DNLOPT_PYTHON=OFF -DNLOPT_JAVA=OFF -DCMAKE_UNITY_BUILD=ON -B build-${_arch} . make -C build-${_arch} done } |