29 lines
681 B
Makefile
29 lines
681 B
Makefile
# Created by: mp39590@gmail.com
|
|
|
|
PORTNAME= pyscard
|
|
PORTVERSION= 2.0.0
|
|
CATEGORIES= security python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= mp39590@gmail.com
|
|
COMMENT= Smartcard module for Python
|
|
|
|
LICENSE= LGPL21+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= swig:devel/swig \
|
|
pcsc-lite>0:devel/pcsc-lite
|
|
RUN_DEPENDS= pcsc-lite>0:devel/pcsc-lite
|
|
|
|
## Python3 is supported
|
|
USES= python:3.6+
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
PYDISTUTILS_BUILD_TARGET= build_ext
|
|
PYDISTUTILS_BUILDARGS+= --include-dirs=${LOCALBASE}/include/PCSC
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/smartcard/scard/_scard*.so
|
|
|
|
.include <bsd.port.mk>
|