diff options
author | David Robillard <d@drobilla.net> | 2011-03-26 18:41:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-26 18:41:59 +0000 |
commit | 07180744e7ae0ce883f17d080fb0f736161f175e (patch) | |
tree | 7dec5beee50b20f63db143dc6434e142e4b5f615 /core.lv2/wscript | |
parent | 334c0b1cf094c4a706723a01aac18f4de14758ca (diff) | |
download | lv2-07180744e7ae0ce883f17d080fb0f736161f175e.tar.xz |
Add man page for lv2config.
Diffstat (limited to 'core.lv2/wscript')
-rw-r--r-- | core.lv2/wscript | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core.lv2/wscript b/core.lv2/wscript index 0b3eb1e..2680664 100644 --- a/core.lv2/wscript +++ b/core.lv2/wscript @@ -5,7 +5,7 @@ from waflib.extras import autowaf as autowaf import waflib.Options as Options # Version of this package (even if built as a child) -LV2CORE_VERSION = '4.0' +LV2CORE_VERSION = '4.1' # Variables for 'waf dist' APPNAME = 'lv2core' @@ -76,12 +76,16 @@ def build(bld): # Bundle (data) bld.install_files('${LV2DIR}/lv2core.lv2', 'lv2.ttl manifest.ttl') + # lv2config program obj = bld(features = 'c cprogram', source = 'lv2config.c serd-0.1.0.c', target = 'lv2config', install_path = '${BINDIR}', cflags = '-std=c99') + # Man page + bld.install_files('${MANDIR}/man1', 'lv2config.1') + def dist(): import Scripting Scripting.g_gz = 'gz' |