Date: Tuesday, November 23, 2021 @ 11:14:34 Author: arojas Revision: 428978
Remove tbb dependency, see https://github.com/DrTimothyAldenDavis/SuiteSparse/issues/72 Modified: suitesparse/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-11-23 10:11:48 UTC (rev 428977) +++ PKGBUILD 2021-11-23 11:14:34 UTC (rev 428978) @@ -1,19 +1,17 @@ # Maintainer: Ronald van Haren <ronald.archlinux.org> +# Maintainer: Antonio Rojas <[email protected]> pkgname=suitesparse pkgver=5.10.1 -pkgrel=1 -pkgdesc="A collection of sparse matrix libraries" -url="http://faculty.cse.tamu.edu/davis/suitesparse.html" -arch=('x86_64') -conflicts=('umfpack') -provides=('umfpack') -replaces=('umfpack') -depends=('metis' 'lapack' 'tbb' 'mpfr') -makedepends=('gcc-fortran' 'cmake' 'chrpath') -license=('GPL') -options=('staticlibs') -source=($pkgname-$pkgver.tar.gz::"https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v$pkgver.tar.gz" +pkgrel=2 +pkgdesc='A collection of sparse matrix libraries' +url='http://faculty.cse.tamu.edu/davis/suitesparse.html' +arch=(x86_64) +depends=(metis lapack mpfr) +makedepends=(gcc-fortran cmake chrpath) +license=(GPL) +options=(staticlibs) +source=(https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v$pkgver/$pkgname-$pkgver.tar.gz suitesparse-no-demo.patch) sha256sums=('acb4d1045f48a237e70294b950153e48dce5b5f9ca8190e86c2b8c54ce00a7ee' '409b32e546ec4936d0d88e39c59ee68dfd9f630d8c454ce1e3d58243df7ad396') @@ -26,7 +24,7 @@ build() { cd SuiteSparse-$pkgver - BLAS=-lblas LAPACK=-llapack TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB MY_METIS_LIB=/usr/lib/libmetis.so make + BLAS=-lblas LAPACK=-llapack MY_METIS_LIB=/usr/lib/libmetis.so make } @@ -34,7 +32,7 @@ cd SuiteSparse-$pkgver install -dm755 "${pkgdir}"/usr/{include,lib} - BLAS=-lblas LAPACK=-llapack TBB=-ltbb SPQR_CONFIG=-DHAVE_TBB MY_METIS_LIB=/usr/lib/libmetis.so \ + BLAS=-lblas LAPACK=-llapack MY_METIS_LIB=/usr/lib/libmetis.so \ make INSTALL_LIB="${pkgdir}"/usr/lib INSTALL_INCLUDE="${pkgdir}"/usr/include install # fix RPATH
