28 lines
451 B
Makefile
28 lines
451 B
Makefile
# $OpenBSD: Makefile,v 1.6 2020/07/25 11:20:55 pvk Exp $
|
|
|
|
COMMENT= extract elements from a JSON document
|
|
|
|
MODPY_EGG_VERSION= 0.10.0
|
|
DISTNAME= jmespath-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= https://github.com/jmespath/jmespath.py
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_PI= Yes
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
FLAVORS= python3
|
|
FLAVOR ?=
|
|
|
|
post-install:
|
|
rm ${PREFIX}/bin/jp.py
|
|
|
|
.include <bsd.port.mk>
|