mirror of
https://git.freebsd.org/ports.git
synced 2025-05-04 07:27:38 -04:00
24 lines
685 B
Makefile
24 lines
685 B
Makefile
PORTNAME= websockets
|
|
PORTVERSION= 15.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Implementation of the WebSocket Protocol (RFC 6455 and 7692)
|
|
WWW= https://pypi.org/project/websockets/ \
|
|
https://github.com/python-websockets/websockets
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=39.2.0:devel/py-setuptools@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
|
|
|
|
USES= cpe python
|
|
CPE_VENDOR= ${PORTNAME}_project
|
|
USE_PYTHON= autoplist pep517
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/websockets/speedups*.so
|
|
|
|
.include <bsd.port.mk>
|