mirror of
https://git.freebsd.org/ports.git
synced 2025-05-24 23:16:33 -04:00
33 lines
765 B
Makefile
33 lines
765 B
Makefile
PORTNAME= mongokit
|
|
PORTVERSION= 0.9.1.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= mail@derzinn.de
|
|
COMMENT= Python ORM-like layer on top of pymongo
|
|
WWW= http://namlook.github.com/mongokit/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymongo>=2.5:databases/py-pymongo@${PY_FLAVOR}
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= namlook
|
|
|
|
NO_ARCH= yes
|
|
PORTDOCS= *.txt
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
# Remove introduction.txt, soft-link causes issue
|
|
${RM} ${WRKSRC}/doc/introduction.txt
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|