summaryrefslogtreecommitdiff
path: root/tools/linux_packaging/build
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linux_packaging/build')
-rwxr-xr-xtools/linux_packaging/build13
1 files changed, 12 insertions, 1 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 4ed5aa36ac..186650331a 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -147,6 +147,7 @@ Shared=$APPDIR/share
Plugins=$APPLIB/plugins
Surfaces=$APPLIB/surfaces
Panners=$APPLIB/panners
+ExportFormats=$Shared/export
Locale=$Shared/locale
MidiMaps=$Shared/midi_maps
Modules=$Libraries/modules
@@ -185,6 +186,7 @@ mkdir -p $Shared
mkdir -p $Locale
mkdir -p $Surfaces
mkdir -p $MidiMaps
+mkdir -p $ExportFormats
mkdir -p $Panners
mkdir -p $Shared/templates
mkdir -p $Shared/doc
@@ -438,7 +440,16 @@ cp $BUILD_ROOT/libs/surfaces/*/libardour*.so* $Surfaces
mv $Surfaces/libardourcp.so* $Libraries
# MidiMaps
-cp $BUILD_ROOT/../../midi_maps/*.map $MidiMaps
+# got to be careful with names here
+for x in $BUILD_ROOT/../../midi_maps/*.map ; do
+ cp "$x" $MidiMaps
+done
+
+# ExportFormats
+# got to be careful with names here
+for x in $BUILD_ROOT/../../export/*.preset $BUILD_ROOT/../../export/*.format ; do
+ cp "$x" $ExportFormats
+done
# Panners
cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners