mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Elmar Klausmeier <Elmar.Klausmeier@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - set SUNDIALS_INDEX_TYPE for 32-bit ARM
|
|
|
|
pkgname=sundials
|
|
pkgver=5.1.0
|
|
pkgrel=1
|
|
pkgdesc="Suite of nonlinear differential/algebraic equation solvers"
|
|
arch=(x86_64)
|
|
url="https://computation.llnl.gov/casc/sundials/main.html"
|
|
license=(BSD)
|
|
depends=(openmpi suitesparse)
|
|
makedepends=(cmake gcc-fortran python)
|
|
source=("https://computation.llnl.gov/projects/sundials/download/$pkgname-$pkgver.tar.gz")
|
|
sha256sums=('fb22d14fad42203809dc46d046b001149ec4e901b23882bd4a80619157fd9b21')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
[[ $CARCH != "aarch64" ]] && CONFIG="-DSUNDIALS_INDEX_TYPE=int32_t"
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DMPI_ENABLE=ON \
|
|
-DPTHREAD_ENABLE=ON \
|
|
-DOPENMP_ENABLE=ON \
|
|
-DF77_INTERFACE_ENABLE=ON \
|
|
-DKLU_ENABLE=ON \
|
|
-DKLU_LIBRARY_DIR=/usr/lib \
|
|
-DEXAMPLES_INSTALL_PATH=/usr/share/sundials/examples $CONFIG
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
|
|
}
|