blob: d1453f3fcc405a4ef3cefe3133f33d2edd6f8347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: x2b <psaoj.10.Toranaga-San@spamgourmet.com>
# Contributor: Maik93 <michael.mugnai@gmail.com>
# Instructions / Troubleshoot Download the source from
# https://www.hsl.rl.ac.uk/ipopt/ and place it in the folder,
# alongside this PKGBUILD. Check package version and sha256sum of the
# downloaded tarball, it may be different from the one listed here.
# If so either use "SKIP" or replace with your tarball sha256sum.
pkgname=coin-or-hsl
_pkgname=coinhsl
pkgrel=1
pkgver=2024.05.15
pkgdesc="HSL Mathematical Software Library. Including solvers for sparse linear systems of equations and sparse eigenvalue problems. Compiled with coin-or-tools, supports Ipopt."
arch=('i686' 'x86_64')
url="http://www.hsl.rl.ac.uk/"
license=('LicenseRef-STFC')
makedepends=('gcc' 'gcc-fortran')
depends=('blas-openblas' 'openblas' 'metis' 'gcc-libs' 'glibc')
optdepends=('coin-or-ipopt')
source=("ThirdParty-HSL::git+https://github.com/coin-or-tools/ThirdParty-HSL.git" "manual://${_pkgname}-${pkgver}.tar.tgz")
sha256sums=('SKIP'
'2534807b4f6a4a69661c82dc0da7094f685f0fce6443a9147ee90a21caba9e63')
prepare() {
cd ${srcdir}/ThirdParty-HSL
ln -sf ../${_pkgname}-${pkgver} coinhsl
mkdir -p build
cd build
../configure \
--prefix=/usr \
LIBS="-llapack" \
LDFLAGS="${LDFLAGS}" \
CFLAGS="${CFLAGS}" \
--with-blas="-L/usr/lib -lopenblas"
}
build() {
cd ${srcdir}/ThirdParty-HSL/build
make
}
package () {
cd ${srcdir}/ThirdParty-HSL
cd build
make DESTDIR=${pkgdir} install
# For Ipopt:
ln -rs ${pkgdir}/usr/lib/libcoinhsl.so ${pkgdir}/usr/lib/libhsl.so
install -Dm644 ${srcdir}/${_pkgname}-${pkgver}/LICENCE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
|