diff options
author | steve <steve@FreeBSD.org> | 1998-07-12 02:20:30 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-07-12 02:20:30 +0800 |
commit | 8f2f3bf091470ff15dfc2189176b739a41f73606 (patch) | |
tree | 67a040ba73ffd51a2e16b01fc0f3a7ab003a4fd3 /math/umfpack/Makefile | |
parent | 28ea959f2b327a87d57af8045e7f33344602ce2f (diff) | |
download | freebsd-ports-gnome-8f2f3bf091470ff15dfc2189176b739a41f73606.tar.gz freebsd-ports-gnome-8f2f3bf091470ff15dfc2189176b739a41f73606.tar.zst freebsd-ports-gnome-8f2f3bf091470ff15dfc2189176b739a41f73606.zip |
Initial import of umfpack version 2.2.
A package for solving systems of sparse linear systems.
PR: 5295
Submitted by: Pedro Giffuni <giffunip@asme.org>
Diffstat (limited to 'math/umfpack/Makefile')
-rw-r--r-- | math/umfpack/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/math/umfpack/Makefile b/math/umfpack/Makefile new file mode 100644 index 000000000000..04f3f0b5687f --- /dev/null +++ b/math/umfpack/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: UMFPACK +# Version required: 2.2 +# Date created: 5 Nov 97 +# Whom: Pedro Giffuni <giffunip@asme.org> +# +# $Id$ +# + +DISTNAME= umfpack2.2 +PKGNAME= umfpack-2.2 +CATEGORIES= math +MASTER_SITES= http://netlib.bell-labs.com/netlib/linalg/ + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= ${PREFIX}/lib/libblas.a:${PORTSDIR}/math/blas + +NO_CDROM= 'Must not be sold' +WRKSRC= ${WRKDIR}/UMFPACK2.2 +ALL_TARGET= libumfpack.a + +do-install: + $(INSTALL_DATA) ${WRKSRC}/libumfpack.a ${PREFIX}/lib +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/umfpack + ${GZIP_CMD} ${WRKSRC}/README + ${INSTALL_DATA} ${WRKSRC}/README.gz ${PREFIX}/share/doc/umfpack +.endif +.include <bsd.port.mk> |