freebsd-ports/devel/py-pex/Makefile
Steven Kreuzer 2fbc41395a PEX files are self-contained executable Python virtual environments.
More specifically, they are carefully constructed zip files with a
#!/usr/bin/env python and special __main__.py that allows you to interact with
the PEX runtime

WWW: https://pex.readthedocs.org/en/latest/
2015-07-14 15:53:18 +00:00

20 lines
422 B
Makefile

# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= pex
PORTVERSION= 1.0.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= PEX packaging toolchain
LICENSE= APACHE20
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wheel>=0.24.0:${PORTSDIR}/devel/py-wheel
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>