summaryrefslogtreecommitdiff
path: root/math/blas/Makefile
diff options
context:
space:
mode:
authorplunky <plunky@pkgsrc.org>2020-02-28 21:48:53 +0000
committerplunky <plunky@pkgsrc.org>2020-02-28 21:48:53 +0000
commite362443ab8551a32511403281b24ebc2cf887be8 (patch)
tree58ca55dcfcb939ab710cab75ba9459026b54cf65 /math/blas/Makefile
parentabc5ce6596ec949555403bcccd99f194e8ddfede (diff)
downloadpkgsrc-e362443ab8551a32511403281b24ebc2cf887be8.tar.gz
Update math/lapack and math/blas to v3.9.0
Have switched to the CMAKE build and enabled tests. make test passes all (with one patch pushed upstream) Package additions, from the release notes are: LAPACK 3.9.0 LAPACK QR preconditioned QR SVD method for computing the SVD with high accuracy, by Zlatko Drmac LAPACK Householder Reconstruction by Igor Kozachenko and Jim Demmel LAPACK 3.8.0 Symmetric-indefinite Factorization: Aasen’s tridiagonalization 2 stage A contribution from Ichitaro Yamazaki (University of Tennessee). LAPACKE interfaces A contribution from Julie Langou (University of Tennessee).
Diffstat (limited to 'math/blas/Makefile')
-rw-r--r--math/blas/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/math/blas/Makefile b/math/blas/Makefile
index aca0869db2f..9b565674f5f 100644
--- a/math/blas/Makefile
+++ b/math/blas/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.36 2016/12/03 15:37:34 marino Exp $
+# $NetBSD: Makefile,v 1.37 2020/02/28 21:48:53 plunky Exp $
.include "../../math/lapack/Makefile.common"
@@ -6,12 +6,11 @@ PKGNAME= ${DISTNAME:S/lapack/blas/}
COMMENT= Basic Linear Algebra Subprograms (Fortran)
-PATCHDIR= ${.CURDIR}/../../math/lapack/patches
+# not actually true but pretend as we package it separately
+CMAKE_ARGS+= -DLATESTLAPACK_FOUND:BOOL=TRUE
-BUILD_TARGET= blaslib
+BUILD_TARGET= blas
-do-install:
- ${LIBTOOL} --mode=install ${INSTALL_DATA} ${WRKSRC}/BLAS/SRC/libblas.la \
- ${DESTDIR}${PREFIX}/lib
+TEST_DIRS= ${WRKSRC}/${OBJDIR}/BLAS
.include "../../mk/bsd.pkg.mk"