52b5850ca0
a fast core written in C with a thin Cython binding to Python. The goal of palm was to make improvements to the Google reference implementation, namely: * Make the library significantly faster * Clean up the API WWW: https://github.com/bumptech/palm/
21 lines
442 B
Makefile
21 lines
442 B
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= palm
|
|
PORTVERSION= 0.1.7
|
|
CATEGORIES= devel
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= vg@FreeBSD.org
|
|
COMMENT= Protobufs Are Lightweight Messages
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/${PORTNAME}/${PORTNAME}.so
|
|
|
|
.include <bsd.port.mk>
|