464ca961d8
python-markdown2 2.3.5: - Fenced code blocks lang with leading space - Search for items only within metadata header - highlightjs language class support - FIPS compliance - Fix for double amp replacement inside link title
26 lines
731 B
Makefile
26 lines
731 B
Makefile
# $NetBSD: Makefile,v 1.13 2017/11/28 09:02:59 adam Exp $
|
|
|
|
DISTNAME= markdown2-2.3.5
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=m/markdown2/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/trentm/python-markdown2
|
|
COMMENT= Fast and complete Python implementation of Markdown
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
REPLACE_PYTHON= lib/markdown2.py
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && ${MV} markdown2 markdown2-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/test && ${SETENV} ${TEST_ENV} ${PYTHONBIN} test.py
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|