diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1996-06-07 15:39:54 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1996-06-07 15:39:54 +0000 |
commit | d2e95f05c163f196a666702adf838324fd6ea6dd (patch) | |
tree | e4b08b49cd31550bb706b566347298b0112a0593 /math/lapack/Makefile | |
parent | Upgrade to 19.31 (diff) |
LAPACK is a library of Fortran 77 subroutines for linear algebra.
Diffstat (limited to 'math/lapack/Makefile')
-rw-r--r-- | math/lapack/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/math/lapack/Makefile b/math/lapack/Makefile new file mode 100644 index 000000000000..caba126f2c7e --- /dev/null +++ b/math/lapack/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: lapack +# Version required: 2.0 +# Date created: 2 July 1994 +# Whom: jmz +# +# $Id$ +# + +DISTNAME= LAPACK +PKGNAME= lapack-2.0 +CATEGORIES+= math +MASTER_SITES= ftp://ftp.netlib.org/lapack/ +DISTFILES= lapack.tar.gz manpages.tar.gz + +MAINTAINER= jmz@FreeBSD.org + +do-install: + @install -c -o bin -g bin ${WRKSRC}/BLAS/SRC/libblas.* ${PREFIX}/lib + @install -c -o bin -g bin ${WRKSRC}/SRC/liblapack.* ${PREFIX}/lib +.if !defined(NOMANCOMPRESS) + @(cd ${WRKDIR}/blas/man/manl; \ + for i in *.l; do gzip < $$i >${PREFIX}/man/manl/$$i.gz; done) + @(cd ${WRKDIR}/man/manl; \ + for i in *.l; do gzip < $$i >${PREFIX}/man/manl/$$i.gz; done) +.endif + +.include <bsd.port.mk> |