Clean up top-level source tree

Collect architecture independent data in 'share' subfolder.
This also matches the install path
This commit is contained in:
Robin Gareus 2020-02-23 15:26:48 +01:00
parent 96ef1dc0ed
commit 54c4d3adc5
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
564 changed files with 25 additions and 25 deletions

View file

@ -347,25 +347,25 @@ for backend in jack wavesaudio dummy coreaudio; do
done
# Export Formats/Presets
for f in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do
for f in $BUILD_ROOT/../share/export/*.preset $BUILD_ROOT/../share/export/*.format ; do
cp "$f" $ExportFormats ;
done
#Session templates
cp -av $BUILD_ROOT/../templates $Templates
cp -av $BUILD_ROOT/../share/templates $Templates
# PluginMetadata
cp -av $BUILD_ROOT/../plugin_metadata $PluginMetadata
cp -av $BUILD_ROOT/../share/plugin_metadata $PluginMetadata
# MidiMaps
# got to be careful with names here
for x in $BUILD_ROOT/../midi_maps/*.map ; do
for x in $BUILD_ROOT/../share/midi_maps/*.map ; do
cp "$x" $MidiMaps
done
# MIDNAM Patch Files
# got to be careful with names here
for x in $BUILD_ROOT/../patchfiles/*.midnam ; do
for x in $BUILD_ROOT/../share/patchfiles/*.midnam ; do
cp "$x" $PatchFiles
done
@ -381,13 +381,13 @@ done
# MackieControl data
# got to be careful with names here
for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
for x in $BUILD_ROOT/../share/mcp/*.device $BUILD_ROOT/../share/mcp/*.profile ; do
cp "$x" $MackieControl
done
# OSC data
# got to be careful with names here
for x in $BUILD_ROOT/../osc/*.preset ; do
for x in $BUILD_ROOT/../share/osc/*.preset ; do
cp "$x" $OSC
done