diff options
author | cjep <cjep@pkgsrc.org> | 2002-12-22 18:28:33 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-12-22 18:28:33 +0000 |
commit | 7e141787bcf6bfade34878b96da7fbab58407e17 (patch) | |
tree | c0da93ca0839c6533e9edaf6dba19c7defdfff88 /math/gp-autpgrp/Makefile | |
parent | 2ef79d4db2c14cc9131ccd0ffb79cbfbde91919f (diff) | |
download | pkgsrc-7e141787bcf6bfade34878b96da7fbab58407e17.tar.gz |
Initial import of the GAP package AutPGrp 1.1 into the NetBSD packages
collection as math/gp-autpgrp.
AutPGrp is a GAP 4 package for computing automorphism groups of p-groups.
In the AutPGrp package we introduce a new function to compute the
automorphism group of a finite p-group. The underlying algorithm is a
refinement of the methods described in O'Brien (1995). In particular,
this implementation is more efficient in both time and space requirements
and hence has a wider range of applications than the ANU pq method. Our
package is written in GAP code and it makes use of a number of methods
from the GAP library such as the MeatAxe for matrix groups and
permutation group functions.
Diffstat (limited to 'math/gp-autpgrp/Makefile')
-rw-r--r-- | math/gp-autpgrp/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/math/gp-autpgrp/Makefile b/math/gp-autpgrp/Makefile new file mode 100644 index 00000000000..1b3287359f0 --- /dev/null +++ b/math/gp-autpgrp/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/12/22 18:28:33 cjep Exp $ +# + +DISTNAME= autpgrp-1.1 +PKGNAME= gp-autpgrp-1.1 +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/autpgrp.html +COMMENT= GAP package for finding automorphism groups of finite p-groups + +BUILD_DEPENDS+= zoo-[0-9]*:../../archivers/zoo + +EXTRACT_CMD= ${LOCALBASE}/bin/zoo -extract ${DOWNLOADED_DISTFILE} +WRKSRC= ${WRKDIR}/autpgrp + +NO_BUILD= YES +USE_BUILDLINK2= YES +GAP_PKG_NAME= autpgrp + +do-install: + cd ${WRKDIR} && ${PAX} -rw ${GAP_PKG_NAME} ${GAP_PKG_ROOT} + +.include "../../math/gap/gap.package.mk" +.include "../../mk/bsd.pkg.mk" |