28 lines
589 B
Makefile
28 lines
589 B
Makefile
# $OpenBSD: Makefile,v 1.2 2020/07/03 21:13:16 sthen Exp $
|
|
|
|
COMMENT = sign JSON with Ed25519 signatures
|
|
|
|
MODPY_EGG_VERSION = 1.1
|
|
DISTNAME = signedjson-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = textproc
|
|
|
|
MAINTAINER = Renaud Allard <renaud@allard.it>
|
|
|
|
# Apache 2.0
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
RUN_DEPENDS = textproc/py-canonicaljson${MODPY_FLAVOR} \
|
|
textproc/py-unpaddedbase64${MODPY_FLAVOR} \
|
|
security/py-libnacl${MODPY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|