24 lines
457 B
Makefile
24 lines
457 B
Makefile
|
COMMENT = hatch plugin for versioning from a package.json file
|
||
|
|
||
|
MODPY_EGG_VERSION = 0.3.2
|
||
|
DISTNAME = hatch_nodejs_version-${MODPY_EGG_VERSION}
|
||
|
PKGNAME = py-${DISTNAME}
|
||
|
|
||
|
CATEGORIES = devel
|
||
|
|
||
|
HOMEPAGE = https://github.com/agoose77/hatch-nodejs-version
|
||
|
MAINTAINER = Paco Esteban <paco@openbsd.org>
|
||
|
|
||
|
# MIT
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
MODULES = lang/python
|
||
|
|
||
|
MODPY_PI = Yes
|
||
|
MODPY_PYBUILD = hatchling
|
||
|
|
||
|
FLAVORS = python3
|
||
|
FLAVOR = python3
|
||
|
|
||
|
.include <bsd.port.mk>
|