mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 11:20:46 -04:00
36 lines
848 B
Makefile
36 lines
848 B
Makefile
PORTNAME= pymtbl
|
|
PORTVERSION= 0.6.0
|
|
PORTREVISION= 0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= FARSIGHT LOCAL/truckman/farsight
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= Python wrapper for devel/mtbl
|
|
WWW= https://github.com/farsightsec/pymtbl
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
LIB_DEPENDS= libmtbl.so:devel/mtbl
|
|
|
|
USES= pkgconfig python shebangfix uniquefiles:dirs
|
|
USE_PYTHON= autoplist cython distutils
|
|
|
|
SHEBANG_FILES= examples/*.py examples/*/*.py
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
pre-build:
|
|
cython-${PYTHON_VER} ${WRKSRC}/mtbl.pyx
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/mtbl*.so
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
|
|
.include <bsd.port.mk>
|