Deploy LRDF presets (if any)

This commit is contained in:
Robin Gareus 2022-10-11 17:06:39 +02:00
parent 5324c9092e
commit ae6bf4bc7d
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
4 changed files with 9 additions and 0 deletions

0
share/rdf/.stub Normal file
View File

View File

@ -188,6 +188,7 @@ Backends=$APPLIB/backends
Themes=$Shared/themes
Templates=$Shared/templates
LRDFPresets=$Shared/rdf
PluginMetadata=$Shared/plugin_metadata
MixerSettings=$Shared/mixer_settings
ExportFormats=$Shared/export
@ -405,6 +406,9 @@ done
#Session templates
cp -av $BUILD_ROOT/../share/templates $Templates
#LADSPA Presets
cp -av $BUILD_ROOT/../share/rdf $LRDFPresets
# PluginMetadata
cp -av $BUILD_ROOT/../share/plugin_metadata $PluginMetadata

View File

@ -130,6 +130,7 @@ PluginMetadata=$Shared/plugin_metadata
MixerSettings=$Shared/mixer_settings
ExportFormats=$Shared/export
Templates=$Shared/templates
LRDFPresets=$Shared/rdf
PatchFiles=$Shared/patchfiles
LuaScripts=$Shared/scripts
MediaClips=$Shared/media
@ -331,6 +332,9 @@ done
#Session templates
cp -R $BUILD_ROOT/../share/templates $Templates
#LADSPA Presets
cp -av $BUILD_ROOT/../share/rdf $LRDFPresets
# PluginMetadata
cp -R $BUILD_ROOT/../share/plugin_metadata $PluginMetadata

View File

@ -1625,6 +1625,7 @@ def build(bld):
bld.install_files (bld.env['CONFDIR'], 'system_config')
bld.install_files (os.path.join (bld.env['DATADIR'], 'templates'), bld.path.ant_glob ('share/templates/**'), cwd=bld.path.find_dir ('share/templates'), relative_trick=True)
bld.install_files (os.path.join (bld.env['DATADIR'], 'rdf'), bld.path.ant_glob ('share/rdf/*.n3'))
if bld.env['RUN_TESTS']:
bld.add_post_fun(test)