31 lines
607 B
Makefile
31 lines
607 B
Makefile
# $OpenBSD: Makefile,v 1.10 2021/11/02 00:00:27 sthen Exp $
|
|
|
|
COMMENT = powerful declarative parser/builder for binary data
|
|
|
|
# as of 2021/07/01, pykeepass needs this specific version
|
|
MODPY_EGG_VERSION = 2.10.54
|
|
EPOCH = 0
|
|
|
|
DISTNAME = construct-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://construct.readthedocs.io/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PI = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
# github version has tests, but they require arrow (not yet in ports)
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|