mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 03:46:30 -04:00
27 lines
725 B
Makefile
27 lines
725 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= python-arango
|
|
DISTVERSION= 4.0.0
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Python driver for ArangoDB
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
post-extract:
|
|
@${RM} -r ${WRKSRC}/tests # otherwise they are installed under the root directory and cause conflicts
|
|
|
|
.include <bsd.port.mk>
|