mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 07:57:38 -04:00
25 lines
597 B
Makefile
25 lines
597 B
Makefile
PORTNAME= httptools
|
|
PORTVERSION= 0.6.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Collection of framework independent HTTP protocol utils
|
|
WWW= https://github.com/MagicStack/httptools
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libhttp_parser.so:www/http-parser
|
|
|
|
USES= localbase python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
post-patch:
|
|
@${RM} -r ${WRKSRC}/vendor/http-parser/
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|