mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
59bc895a80
Optional packages endowing PARI with extra capabilities. - elldata: PARI version of the Elliptic curve data by J. E. Cremona, <http://www.maths.nott.ac.uk/personal/jec/ftp/data>, for use with ellsearch, ellidentity and ellgenerators. - galdata: data needed by polgalois for degrees 8,9,10 and 11 - galpol: PARI package of the GALPOL database of polynomials defining Galois extensions of the rationals, accessed by galoisgetpol. - nftables: repackaging of the historical 'megrez' number field tables - seadata: needed by ellap for large primes. These polynomials were extracted from the ECHIDNA databases and computed by David R. Kohel. OK: sthen@
35 lines
855 B
Makefile
35 lines
855 B
Makefile
COMMENT = optional packages for PARI/GP
|
|
|
|
CATEGORIES= math
|
|
|
|
# packages are almost never updated, but keep the date just in case
|
|
DISTNAME = pari-data-20220729
|
|
DISTFILES = pari-elldata-20210301{elldata}.tgz \
|
|
pari-galdata-20080412{galdata}.tgz \
|
|
pari-galpol-20180625{galpol}.tgz \
|
|
pari-nflistdata-20220729{nflistdata}.tgz \
|
|
pari-nftables-20080929{nftables}.tgz \
|
|
pari-seadata-20090618{seadata}.tgz \
|
|
pari-seadata-big-20170418{seadata-big}.tar
|
|
|
|
HOMEPAGE= https://pari.math.u-bordeaux.fr/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
SITES = https://pari.math.u-bordeaux.fr/pub/pari/packages/
|
|
|
|
RUN_DEPENDS = math/pari
|
|
|
|
CONFIGURE_STYLE = none
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/pari
|
|
cp -rf ${WRKDIR}/data/* ${PREFIX}/share/pari
|
|
cp -rf ${WRKDIR}/nftables ${PREFIX}/share/pari
|
|
|
|
.include <bsd.port.mk>
|