summaryrefslogtreecommitdiff
path: root/math/gp-fplsa/Makefile
diff options
context:
space:
mode:
authorcjep <cjep@pkgsrc.org>2002-12-24 00:17:25 +0000
committercjep <cjep@pkgsrc.org>2002-12-24 00:17:25 +0000
commit459c0f2985ee711152eae5d9d3ad7edec3e745fc (patch)
tree3d5d7cc5f4aed30b4f948b276825dc32f7ddeb32 /math/gp-fplsa/Makefile
parent43b07a916b793ec113053f93b9745083a0c80e9f (diff)
downloadpkgsrc-459c0f2985ee711152eae5d9d3ad7edec3e745fc.tar.gz
Initial import of the GAP package FPLSA into the NetBSD packages
collection as math/gp-fplsa. This package is a GAP interface to a C program called fplsa for dealing with finitely presented Lie super-algebras. This GAP package installs an alternative method for the GAP operation `IsomorphismSCTableAlgebra'. The method calls fplsa to do the hard part of the computation. This speeds up the calculation and permits larger problems to be attempted. The external program has much additional functionality which is not used by the present version of the package.
Diffstat (limited to 'math/gp-fplsa/Makefile')
-rw-r--r--math/gp-fplsa/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/math/gp-fplsa/Makefile b/math/gp-fplsa/Makefile
new file mode 100644
index 00000000000..d96afea91b5
--- /dev/null
+++ b/math/gp-fplsa/Makefile
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/12/24 00:17:25 cjep Exp $
+#
+
+DISTNAME= fplsa
+PKGNAME= gp-fplsa-1.0
+CATEGORIES= math
+MASTER_SITES= ftp://ftp-gap.dcs.st-and.ac.uk/pub/gap/gap4/share/
+EXTRACT_SUFX= .zoo
+
+MAINTAINER= cjep@netbsd.org
+HOMEPAGE= http://www.gap-system.org/Share/fplsa.html
+COMMENT= GAP interface to FPLSA
+
+WRKSRC= ${WRKDIR}/fplsa
+
+USE_BUILDLINK2= YES
+GAP_PKG_NAME= fplsa
+ALL_TARGET= default
+
+do-configure:
+ cd ${WRKSRC} && ${SH} configure ${GAP_DIRECTORY}
+
+do-install:
+ ${INSTALL_PROGRAM_DIR} ${GAP_PKG_DIRECTORY}
+ @for I in README.fplsa bin doc gap init.g lib; do \
+ cd ${WRKSRC} && ${PAX} -rw $$I ${GAP_PKG_DIRECTORY}; done
+
+.include "../../math/gap/gap.package.mk"
+.include "../../mk/bsd.pkg.mk"