aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-10-14 19:42:42 -0400
committerDavid Robillard <d@drobilla.net>2016-10-14 19:43:08 -0400
commitb40d155aa5cf1b281db88b500580deefbad93883 (patch)
treeceb821346c98732cd8d82aae1d5443b0bcc16ec0 /wscript
parentc681ba78e34b85b032077fe50d56bf9e2e3c1654 (diff)
downloadlv2-b40d155aa5cf1b281db88b500580deefbad93883.tar.xz
Simplify command line use of lv2specgen
Diffstat (limited to 'wscript')
-rw-r--r--wscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/wscript b/wscript
index 001eb19..44c7fa2 100644
--- a/wscript
+++ b/wscript
@@ -346,10 +346,11 @@ def build(bld):
bld(rule = '../lv2specgen/lv2specgen.py --root=' + root_path +
' --list-email=devel@lists.lv2plug.in'
' --list-page=http://lists.lv2plug.in/listinfo.cgi/devel-lv2plug.in'
- ' ${SRC} ../lv2specgen ' +
- os.path.relpath('aux/style.css', out_bundle) +
- ' ${TGT} %s doc/tags' %
- os.path.relpath('doc/html', os.path.dirname(html_path)),
+ ' --style-uri=' + os.path.relpath('aux/style.css', out_bundle) +
+ ' --docdir=' + os.path.relpath('doc/html', os.path.dirname(html_path)) +
+ ' --tags=doc/tags' +
+ ' --index=' + index_file +
+ ' ${SRC} ${TGT}',
source = os.path.join(i.srcpath(), name + '.ttl'),
target = [html_path, index_file])