1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/math/pari_galdata/Makefile
Thierry Thomas f6ab14221b Adding some PARI/GP related packages, to be used by SageMath:
- gp2c: Package for translating GP routines into C
- pari_elldata: Elliptic Curve Data for PARI/GP
- pari_galdata: Data needed by PARI/GP for polgalois
- pari_galpol: Database of Galois polynomials for PARI/GP
- pari_nftables: Repackaging of the historical megrez number field tables
- pari_seadata: Modular polynomials for PARI/GP
2020-03-28 18:37:49 +00:00

31 lines
630 B
Makefile

# Created by: thierry@pompo.net
# $FreeBSD$
PORTNAME= galdata
DISTVERSION= 2008-04-11
CATEGORIES= math
MASTER_SITES= https://pari.math.u-bordeaux.fr/pub/pari/packages/
PKGNAMEPREFIX= pari-
DISTNAME= ${PORTNAME}
DIST_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME}/${DISTVERSION}
MAINTAINER= thierry@FreeBSD.org
COMMENT= Data needed by PARI/GP for polgalois
LICENSE= GPLv2
LIB_DEPENDS= libpari.so:math/pari
USES= tar:tgz
WRKSRC= ${WRKDIR}/data/${PORTNAME}
INSTDIR= ${STAGEDIR}${PREFIX}/share/pari/${PORTNAME}
NO_BUILD= yes
NO_ARCH= yes
do-install:
${MKDIR} ${INSTDIR}
${INSTALL_DATA} ${WRKSRC}/* ${INSTDIR}/
.include <bsd.port.mk>