From 07180744e7ae0ce883f17d080fb0f736161f175e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 26 Mar 2011 18:41:59 +0000 Subject: Add man page for lv2config. --- core.lv2/wscript | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'core.lv2/wscript') 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' -- cgit v1.2.1