4b60c936f7
lilv (0.24.6) stable; * Add more strict error detection when storing plugin state properties * Add option to override LV2_PATH in applications * Don't print errors when saving state if correct links already exist * Fix GCC8 warnings * Fix creating directories across drives on Windows * Fix issues with loading state with saved files from the model * Fix memory errors and Python 3.4+ compatibility in Python bindings * Fix unit tests on Windows * Make Python bindings more Pythonic
23 lines
516 B
Makefile
23 lines
516 B
Makefile
# $NetBSD: options.mk,v 1.2 2019/12/14 18:02:50 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.lilv
|
|
PKG_SUPPORTED_OPTIONS= debug doc tests
|
|
PKG_SUGGESTED_OPTIONS+= # blank
|
|
PLIST_VARS+= doc
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
WAF_ARGS+= --debug
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdoc)
|
|
WAF_ARGS+= --docs
|
|
BUILD_DEPENDS+= doxygen-[0-9]*:../../devel/doxygen
|
|
BUILD_DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
|
|
PLIST.doc= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mtests)
|
|
WAF_ARGS+= --test
|
|
.endif
|