* update coin-or-coinutils to 2.11.10-1

This commit is contained in:
Alexander Baldeck 2023-12-15 07:49:54 +01:00
parent 5956cd5e1b
commit b665f1615b

View File

@ -4,22 +4,32 @@
# Derived from Daniel Ehlers'
pkgname=coin-or-coinutils
pkgver=2.11.9
pkgver=2.11.10
pkgrel=1
pkgdesc='COIN-OR collection of utility classes'
arch=(x86_64 powerpc64le powerpc riscv64)
url='https://github.com/coin-or/CoinUtils'
license=(EPL)
depends=(zlib bzip2 glpk lapack coin-or-data-sample)
makedepends=(gcc-fortran doxygen)
depends=(bzip2
coin-or-data-sample
glpk
lapack
zlib)
makedepends=(doxygen
gcc-fortran)
groups=(coin-or)
source=($pkgname-$pkgver.tar.gz::https://github.com/coin-or/CoinUtils/archive/refs/tags/releases/$pkgver.tar.gz)
sha256sums=('15d572ace4cd3b7c8ce117081b65a2bd5b5a4ebaba54fadc99c7a244160f88b8')
sha256sums=('80c7c215262df8d6bd2ba171617c5df844445871e9891ec6372df12ccbe5bcfd')
build() {
cd CoinUtils-releases-$pkgver
./configure --prefix=/usr --with-blas-lib='-lblas' --with-lapack-lib='-llapack' --with-glpk-lib='-lglpk' --enable-dependency-linking --build=${CHOST}
./configure \
--build=${CHOST} \
--prefix=/usr \
--with-blas-lib='-lblas' \
--with-lapack-lib='-llapack' \
--with-glpk-lib='-lglpk' \
--enable-dependency-linking
make
}