diff options
author | jtb <jtb@pkgsrc.org> | 2001-02-02 01:24:09 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-02-02 01:24:09 +0000 |
commit | 7afe95e883debb0fce229d6143f2e03cba2c3cca (patch) | |
tree | 72be1cbe31255cbcc0e2555800ba8d79496f612a /math/superlu/Makefile | |
parent | fc38234e923144ddd81187c10365843d248f9497 (diff) | |
download | pkgsrc-7afe95e883debb0fce229d6143f2e03cba2c3cca.tar.gz |
Initial import of superlu:
ANSI C routine library for the solution of sparse linear systems
Diffstat (limited to 'math/superlu/Makefile')
-rw-r--r-- | math/superlu/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/math/superlu/Makefile b/math/superlu/Makefile new file mode 100644 index 00000000000..98b2d95209d --- /dev/null +++ b/math/superlu/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/02/02 01:24:09 jtb Exp $ + +DISTNAME= superlu_2.0 +PKGNAME= superlu-2.0 +CATEGORIES= math +MASTER_SITES= http://www.nersc.gov/~xiaoye/SuperLU/ + +MAINTAINER= jtb@netbsd.org +HOMEPAGE= http://www.nersc.gov/~xiaoye/SuperLU/ + +DEPENDS+= blas-[0-9]*:../../math/blas + +WRKSRC= ${WRKDIR}/SuperLU +EVAL_PREFIX+= BLAS_PREFIX=blas +ALL_TARGET= superlulib + +do-install: + ${INSTALL_DATA} ${WRKSRC}/libsuperlu.a ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/SRC/supermatrix.h ${PREFIX}/include + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/superlu + ${INSTALL_DATA} ${WRKSRC}/INSTALL/ug.ps ${PREFIX}/share/doc/superlu + +.include "../../mk/bsd.pkg.mk" |