mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
86492e04df
- Add LICENSE_FILE - Add NO_ARCH - Allow concurrent installation (USE_PYTHON=concurrent) Changes: https://github.com/tiran/defusedxml/releases PR: 226750 Submitted by: sunpoet (myself) Approved by: wg (maintainer)
30 lines
621 B
Makefile
30 lines
621 B
Makefile
# Created by: William Grzybowski <wg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= defusedxml
|
|
PORTVERSION= 0.5.0
|
|
CATEGORIES= devel python textproc
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wg@FreeBSD.org
|
|
COMMENT= XML bomb protection for Python stdlib modules
|
|
|
|
LICENSE= PSFL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
PORTDOCS= *
|
|
DOCS_FILES= CHANGES.txt README.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DOCS_FILES:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|