mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
5b741c77f2
- Change MASTER_SITES to CHEESESHOP - Strip shared library - Update WWW - Take maintainership Changes: https://github.com/nascheme/scgi/commits/master
22 lines
488 B
Makefile
22 lines
488 B
Makefile
# Created by: Neil Blakey-Milner <nbm@FreeBSD.org>
|
|
|
|
PORTNAME= scgi
|
|
PORTVERSION= 2.2
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Python package for implementing SCGI servers
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= python:3.5+
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|