28 lines
620 B
Makefile
28 lines
620 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= python-dotenv
|
|
PORTVERSION= 0.15.0
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Add .env support to your django/flask apps
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python:3.6+
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
USE_LOCALE= en_US.UTF-8
|
|
|
|
OPTIONS_DEFINE= CLI
|
|
OPTIONS_DEFAULT=CLI
|
|
CLI_DESC= Command-line interface support
|
|
|
|
CLI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=5.0:devel/py-click@${PY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|