67 lines
1.8 KiB
Bash
67 lines
1.8 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Ronald van Haren <ronald.archlinux.org>
|
|
|
|
pkgbase=suitesparse
|
|
pkgname=(suitesparse
|
|
suitesparse-graphblas)
|
|
pkgver=7.8.3
|
|
pkgrel=1
|
|
pkgdesc='A collection of sparse matrix libraries'
|
|
url='http://faculty.cse.tamu.edu/davis/suitesparse.html'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
depends=(blas
|
|
gcc-libs
|
|
glibc
|
|
gmp
|
|
lapack
|
|
mpfr)
|
|
makedepends=(cmake
|
|
gcc-fortran
|
|
git)
|
|
replaces=('suitesparse64<7.1.0')
|
|
license=(GPL)
|
|
source=(git+https://github.com/DrTimothyAldenDavis/SuiteSparse#tag=v$pkgver
|
|
ppc32.patch)
|
|
sha256sums=('a51065819bba83a16ac3754dcd313deb257fc1ddd94f3a86b110783674c9af81'
|
|
'fe530b269842452aae6a76f3930b5355464a56ca1747b1bb8861f9751915557b')
|
|
|
|
case "${CARCH}" in
|
|
powerpc64) options=(!lto) ;;
|
|
esac
|
|
|
|
prepare() {
|
|
cd SuiteSparse
|
|
# Fix 32bit powerpc
|
|
patch -Np1 -i ${srcdir}/ppc32.patch
|
|
}
|
|
|
|
build() {
|
|
cd SuiteSparse
|
|
CMAKE_OPTIONS="-DBLA_VENDOR=Generic \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DNSTATIC=ON" \
|
|
make
|
|
}
|
|
|
|
package_suitesparse() {
|
|
cd SuiteSparse
|
|
DESTDIR="$pkgdir" make install
|
|
|
|
rm -r "$pkgdir"/usr/lib/lib{graphblas,lagraph,lagraphx}.so* \
|
|
"$pkgdir"/usr/include/suitesparse/{GraphBLAS,LAGraph,LAGraphX}.h \
|
|
"$pkgdir"/usr/lib/cmake/{GraphBLAS,LAGraph} \
|
|
"$pkgdir"/usr/lib/pkgconfig/{GraphBLAS,LAGraph}.pc
|
|
}
|
|
|
|
package_suitesparse-graphblas() {
|
|
pkgdesc='Graph algorithms in the language of linear algebra'
|
|
depends=(gcc-libs
|
|
glibc)
|
|
|
|
cd SuiteSparse
|
|
DESTDIR="$pkgdir" make install -C GraphBLAS
|
|
DESTDIR="$pkgdir" make install -C LAGraph
|
|
}
|