diff options
author | David Robillard <d@drobilla.net> | 2012-02-09 23:23:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-02-09 23:23:54 +0000 |
commit | 7e5bf17f9e14b4a24346c402bf5fcf88772c50f3 (patch) | |
tree | d8784b58128f9c640ad637ddf4ecfc88efe45691 /plugins/eg-amp.lv2/wscript | |
parent | 3d8a2bef05f69eff154ad350db4be897f6d3edfa (diff) | |
download | lv2-7e5bf17f9e14b4a24346c402bf5fcf88772c50f3.tar.xz |
Portability fixes (plugins work on OSX).
Diffstat (limited to 'plugins/eg-amp.lv2/wscript')
-rw-r--r-- | plugins/eg-amp.lv2/wscript | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/plugins/eg-amp.lv2/wscript b/plugins/eg-amp.lv2/wscript index 3eda122..37ab9b7 100644 --- a/plugins/eg-amp.lv2/wscript +++ b/plugins/eg-amp.lv2/wscript @@ -40,12 +40,20 @@ def configure(conf): def build(bld): bundle = 'eg-amp.lv2' - # Copy data files to build bundle (build/eg-amp.lv2) - for i in [ 'amp.ttl', 'manifest.ttl' ]: - bld(rule = 'cp ${SRC} ${TGT}', + # Build manifest.ttl by substitution (for portable lib extension) + bld(features = 'subst', + source = 'manifest.ttl.in', + target = '%s/%s' % (bundle, 'manifest.ttl'), + install_path = '${LV2DIR}/%s' % bundle, + LIB_EXT = bld.env['pluginlib_EXT']) + + # Copy other data files to build bundle (build/eg-amp.lv2) + for i in [ 'amp.ttl' ]: + bld(features = 'subst', source = i, - target = bld.path.get_bld().make_node('%s/%s' % (bundle, i)), - install_path = '${LV2DIR}/%s' % bundle) + target = '%s/%s' % (bundle, i), + install_path = '${LV2DIR}/%s' % bundle, + LIB_EXT = bld.env['pluginlib_EXT']) # Create a build environment that builds module-style library names # e.g. eg-amp.so instead of libeg-amp.so |