diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2021-08-09 17:31:48 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2021-08-09 17:32:19 +0000 |
commit | 1e6a60636f46e4518ee5b85c18a19a17345a72f9 (patch) | |
tree | 280a6ad9fe106970341b1841b30fc6b15a06a9a8 /math/paritwine/Makefile | |
parent | 0a7852f1bf3ee8e95167704c0d041d46f7e3eab1 (diff) | |
download | ports-1e6a60636f46e4518ee5b85c18a19a17345a72f9.tar.gz ports-1e6a60636f46e4518ee5b85c18a19a17345a72f9.zip |
math/paritwine: New port: Glue library between PARI/GP and other mathematics libraries
Diffstat (limited to 'math/paritwine/Makefile')
-rw-r--r-- | math/paritwine/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/math/paritwine/Makefile b/math/paritwine/Makefile new file mode 100644 index 000000000000..17b202ec310b --- /dev/null +++ b/math/paritwine/Makefile @@ -0,0 +1,31 @@ +PORTNAME= paritwine +DISTVERSION= 0.1 +CATEGORIES= math +MASTER_SITES= http://www.multiprecision.org/downloads/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Glue library between PARI/GP and other mathematics libraries + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libarb.so:math/arb \ + libcmh.so:math/cmh \ + libflint.so:math/flint2 \ + libmpc.so:math/mpc \ + libmpfr.so:math/mpfr \ + libgmp.so:math/gmp \ + libpari.so:math/pari + +USES= gmake libtool localbase +USE_LDCONFIG= yes + +GNU_CONFIGURE= yes + +INSTALL_TARGET= install-strip + +INFO= paritwine + +TEST_TARGET= check + +.include <bsd.port.mk> |