From 1d01e09da3d45af72c04b007bccd240ec16fbe36 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 5 Apr 2015 22:45:50 +0000 Subject: Update template bundles. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5668 a436a847-0d15-0410-975c-d299462d15a1 --- wscript | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 66cfe0e4..0e85c8ef 100644 --- a/wscript +++ b/wscript @@ -239,11 +239,12 @@ def build(bld): bld.install_files('${LV2DIR}/ingen.lv2/', bld.path.ant_glob('bundles/ingen.lv2/*')) - for i in ['StereoInOut.ingen']: - bld.install_files('${LV2DIR}/%s/' % str(i), - bld.path.ant_glob('bundles/%s/*' % str(i))) - bld.symlink_as('${LV2DIR}/%s/libingen_lv2.so' % str(i), - bld.env.LV2DIR + '/ingen.lv2/libingen_lv2.so') + # Install template graph bundles + for c in ['Stereo', 'Mono']: + for t in ['Effect', 'Instrument']: + bundle = '%s%s.ingen' % (c, t) + bld.install_files('${LV2DIR}/%s/' % bundle, + bld.path.ant_glob('bundles/%s/*' % bundle)) bld.add_post_fun(autowaf.run_ldconfig) -- cgit v1.2.1