mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
7668cedb37
Changes: https://github.com/pradyunsg/furo/blob/main/docs/changelog.md https://pradyunsg.me/furo/changelog/
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
PORTNAME= furo
|
|
PORTVERSION= 2023.9.10
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= PYPI \
|
|
LOCAL/sunpoet:static
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
${DISTNAME}-static${EXTRACT_SUFX}:static
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Clean customizable Sphinx documentation theme
|
|
WWW= https://pradyunsg.me/furo/ \
|
|
https://github.com/pradyunsg/furo
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pygments>=2.7:textproc/py-pygments@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sphinx>=5.0,1<8.0,1:textproc/py-sphinx@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sphinx-basic-ng>=0:textproc/py-sphinx-basic-ng@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
post-patch:
|
|
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
cd ${WRKDIR}/static/ && ${COPYTREE_SHARE} . ${STAGEDIR}${PYTHON_SITELIBDIR}/furo/theme/furo/static/
|
|
|
|
.include <bsd.port.mk>
|