From 3664a975933163639a54f8ba35a7fc2c0dae6034 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 31 Dec 2013 02:29:51 +0000 Subject: Install lv2specgen for use by other projects. --- wscript | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'wscript') diff --git a/wscript b/wscript index 0981303..dad6740 100644 --- a/wscript +++ b/wscript @@ -11,6 +11,7 @@ import waflib.Context as Context import waflib.Logs as Logs import waflib.Options as Options import waflib.Scripting as Scripting +import waflib.Utils as Utils # Variables for 'waf dist' APPNAME = 'lv2' @@ -169,6 +170,8 @@ def specgen(task): os.path.relpath(STYLEPATH, bundle), os.path.relpath('build/doc/html', bundle), TAGFILE, + { 'list_email': 'devel@lists.lv2plug.in', + 'list_page': 'http://lists.lv2plug.in/listinfo.cgi/devel-lv2plug.in' }, instances=True, offline=(not task.env.ONLINE_DOCS)) @@ -318,6 +321,14 @@ def build(bld): if bld.env.BUILD_BOOK: bld.recurse('plugins') + # Install lv2specgen + bld.install_files('${DATADIR}/lv2specgen/', + ['lv2specgen/style.css', + 'lv2specgen/template.html']) + bld.install_files('${DATADIR}/lv2specgen/DTD/', + bld.path.ant_glob('lv2specgen/DTD/*')) + bld.install_files('${BINDIR}', 'lv2specgen/lv2specgen.py', chmod=Utils.O755) + if bld.env.DOCS or bld.env.ONLINE_DOCS: # Build Doxygen documentation (and tags file) autowaf.build_dox(bld, 'LV2', VERSION, top, out, 'lv2plug.in/doc', False) -- cgit v1.2.1