diff options
author | David Robillard <d@drobilla.net> | 2016-10-14 19:42:42 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-10-14 19:43:08 -0400 |
commit | b40d155aa5cf1b281db88b500580deefbad93883 (patch) | |
tree | ceb821346c98732cd8d82aae1d5443b0bcc16ec0 /wscript | |
parent | c681ba78e34b85b032077fe50d56bf9e2e3c1654 (diff) | |
download | lv2-b40d155aa5cf1b281db88b500580deefbad93883.tar.xz |
Simplify command line use of lv2specgen
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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]) |