mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
488f77b6f6
PR: 210585 Submitted by: yuri@rawbw.com(maintainer)
26 lines
510 B
Makefile
26 lines
510 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gmpy2
|
|
PORTVERSION= 2.0.8
|
|
CATEGORIES= math python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= GMP/MPIR, MPFR, and MPC interface to Python
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libgmp.so:math/gmp \
|
|
libmpc.so:math/mpc \
|
|
libmpfr.so:math/mpfr
|
|
|
|
USES= python:2 zip
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/gmpy2.so
|
|
|
|
.include <bsd.port.mk>
|