OSC: Add system osc preset directory
authorLen Ovens <len@ovenwerks.net>
Mon, 3 Jul 2017 21:31:27 +0000 (14:31 -0700)
committerLen Ovens <len@ovenwerks.net>
Mon, 3 Jul 2017 21:31:27 +0000 (14:31 -0700)
tools/linux_packaging/build
tools/osx_packaging/osx_build

index d4574b07f482b1d2c32671ea82cc27d0ece7b175..da3ba72e5e66da43ecd42c79ea86ba1783022471 100755 (executable)
@@ -192,6 +192,7 @@ MidiMaps=$Shared/midi_maps
 PatchFiles=$Shared/patchfiles
 LuaScripts=$Shared/scripts
 MackieControl=$Shared/mcp
+OSC=$Shared/osc
 
 if [ x$PRINT_SYSDEPS != x ] ; then
 #
@@ -226,6 +227,7 @@ mkdir -p $MidiMaps
 mkdir -p $PatchFiles
 mkdir -p $LuaScripts
 mkdir -p $MackieControl
+mkdir -p $OSC
 mkdir -p $ExportFormats
 mkdir -p $Panners
 mkdir -p $Backends
@@ -390,6 +392,12 @@ for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
     cp "$x" $MackieControl
 done
 
+# OSC data
+# got to be careful with names here
+for x in $BUILD_ROOT/../osc/*.preset ; do
+    cp "$x" $OSC
+done
+
 # Templates
 #for f in $BUILD_ROOT/../templates/* ; do
 #    if [ -d "$f" ] ; then
index 0bc63e77522d6ab1bc6458caee2b4e802325b397..3e9b587c332b2ed9df072d26febeabf92a63bed9 100755 (executable)
@@ -147,6 +147,7 @@ Templates=$Shared/templates
 PatchFiles=$Shared/patchfiles
 LuaScripts=$Shared/scripts
 MackieControl=$Shared/mcp
+OSC=$Shared/osc
 Themes=$Shared/themes
 
 if [ x$PRINT_SYSDEPS != x ] ; then
@@ -183,6 +184,7 @@ mkdir -p $Templates
 mkdir -p $Frameworks/modules
 mkdir -p $Etc
 mkdir -p $MackieControl
+mkdir -p $OSC
 mkdir -p $PatchFiles
 mkdir -p $LuaScripts
 mkdir -p $Themes
@@ -382,6 +384,12 @@ for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
     cp "$x" $MackieControl
 done
 
+# OSC data
+# got to be careful with names here
+for x in $BUILD_ROOT/../osc/*.preset ; do
+    cp "$x" $OSC
+done
+
 # VAMP plugins that we use
 cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.dylib $Frameworks