pkgsrc/www/py-flask-wtf/options.mk
rodent 64d54b6a46 Set py-wtforms acceptable dependency versions based on documentation. Added
options framework to allow user to run the unit tests during the build.
Requires py-nose and py-flask-babel, but is disabled by default.
2014-01-10 02:21:53 +00:00

13 lines
391 B
Makefile

# $NetBSD: options.mk,v 1.1 2014/01/10 02:21:53 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.py-flask-wtf
PKG_SUPPORTED_OPTIONS= tests
PKG_SUGGESTED_OPTIONS+= # blank
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mtests)
DEPENDS+= ${PYPKGPREFIX}-flask-babel-[0-9]*:../../www/py-flask-babel
DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
PYSETUPBUILDTARGET= test
.endif