28 lines
570 B
Makefile
28 lines
570 B
Makefile
COMMENT = iterative JSON parser
|
|
|
|
MODPY_EGG_VERSION = 3.2.0.post0
|
|
DISTNAME = ijson-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-ijson-${MODPY_EGG_VERSION:S/.post/pl/}
|
|
|
|
CATEGORIES = textproc
|
|
|
|
HOMEPAGE = https://github.com/ICRAR/ijson
|
|
|
|
MAINTAINER = Renaud Allard <renaud@allard.it>
|
|
|
|
# BSD License
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += pthread yajl
|
|
|
|
MODULES = lang/python
|
|
MODPY_PYBUILD = setuptools
|
|
MODPY_PI = Yes
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
MAKE_ENV = LDFLAGS=-L${LOCALBASE}/lib \
|
|
CPPFLAGS=-I${LOCALBASE}/include
|
|
LIB_DEPENDS = devel/libyajl
|
|
|
|
.include <bsd.port.mk>
|