1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/archivers/py-brotlipy/Makefile
Kubilay Kocak c81d6079a7 [NEW PORT] archivers/py-brotlipy: Python binding to the Brotli library
Brotlipy is a collection of CFFI-based bindings to the Brotli compression
reference implementation as written by Google. This enables Python software
to easily and quickly work with the Brotli compression algorithm,
regardless of what interpreter is being used.

WWW: https://github.com/python-hyper/brotlipy/
2019-05-17 12:34:14 +00:00

27 lines
660 B
Makefile

# $FreeBSD$
PORTNAME= brotlipy
PORTVERSION= 0.7.0
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Python binding to the Brotli library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR}
py27_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}enum34>=1.0.4,<2.0:devel/py-enum34@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist distutils
post-install:
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/brotli/*.so
.include <bsd.port.mk>