mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
23 lines
548 B
Makefile
23 lines
548 B
Makefile
# Created by: Andrey Zonov <andrey@zonov.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= msgpack-python
|
|
PORTVERSION= 0.4.7
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= brendan+freebsd@bbqsrc.net
|
|
COMMENT= MessagePack (de)serializer for Python
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/msgpack/_packer.so
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/msgpack/_unpacker.so
|
|
|
|
.include <bsd.port.mk>
|