diff options
author | David Robillard <d@drobilla.net> | 2015-04-05 22:45:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-04-05 22:45:50 +0000 |
commit | 1d01e09da3d45af72c04b007bccd240ec16fbe36 (patch) | |
tree | a036167f217575de5cd9c1aabec76bb38a6bb43d /wscript | |
parent | a219a9c8e08bbd571661b676bd57f4e7bf08e421 (diff) | |
download | ingen-1d01e09da3d45af72c04b007bccd240ec16fbe36.tar.gz ingen-1d01e09da3d45af72c04b007bccd240ec16fbe36.tar.bz2 ingen-1d01e09da3d45af72c04b007bccd240ec16fbe36.zip |
Update template bundles.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5668 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -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) |