Browse Source

Add rule to install extra lv2 preset bundles

Signed-off-by: falkTX <falktx@falktx.com>
tags/2020-07-14
falkTX 4 years ago
parent
commit
8677773fad
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      meson.build

+ 16
- 0
meson.build View File

@@ -216,3 +216,19 @@ subdir('libs')
subdir('ports-legacy')

###############################################################################
# extra files to install

extra_lv2_preset_bundles = [
'TAL-NoiseMaker-Noise4U.lv2',
]

foreach bundle : extra_lv2_preset_bundles
install_data([
'static-lv2-ttl/@0@/manifest.ttl'.format(bundle),
'static-lv2-ttl/@0@/presets.ttl'.format(bundle),
],
install_dir: lv2dir / bundle,
)
endforeach

###############################################################################

Loading…
Cancel
Save