20 lines
457 B
Makefile
20 lines
457 B
Makefile
PORTNAME= murmurhash
|
|
DISTVERSION= 1.0.9
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Cython bindings for MurmurHash2
|
|
WWW= https://github.com/explosion/murmurhash
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= distutils cython autoplist
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/murmurhash/mrmr*.so
|
|
|
|
.include <bsd.port.mk>
|