mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 15:33:55 +02:00
26 lines
466 B
Makefile
26 lines
466 B
Makefile
COMMENT= parser for the CommonMark markdown spec
|
|
|
|
MODPY_DISTV= 0.9.2
|
|
DISTNAME= commonmark-${MODPY_DISTV}
|
|
PKGNAME= py-${DISTNAME}
|
|
CATEGORIES= textproc
|
|
|
|
MAINTAINER= Sebastian Reitenbach <sebastia@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_PI= Yes
|
|
MODPY_PYBUILD= setuptools
|
|
|
|
RUN_DEPENDS= devel/py-future
|
|
TEST_DEPENDS= devel/flake8 \
|
|
devel/py-hypothesis
|
|
|
|
post-install:
|
|
mv ${PREFIX}/bin/cmark ${PREFIX}/bin/commonmark
|
|
|
|
.include <bsd.port.mk>
|