From 1473c2d36460707f6484fe5a0f1d913fbb8a77e0 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 23 Feb 2016 15:44:41 +0100 Subject: Add some lua scripts --- tools/linux_packaging/build | 8 ++++++++ tools/osx_packaging/osx_build | 8 ++++++++ 2 files changed, 16 insertions(+) (limited to 'tools') diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index f25cd2fc4a..be26342e1a 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -177,6 +177,7 @@ ExportFormats=$Shared/export Locale=$Shared/locale MidiMaps=$Shared/midi_maps PatchFiles=$Shared/patchfiles +LuaScripts=$Shared/scripts MackieControl=$Shared/mcp if [ x$PRINT_SYSDEPS != x ] ; then @@ -209,6 +210,7 @@ mkdir -p $Locale mkdir -p $Surfaces mkdir -p $MidiMaps mkdir -p $PatchFiles +mkdir -p $LuaScripts mkdir -p $MackieControl mkdir -p $ExportFormats mkdir -p $Panners @@ -372,6 +374,12 @@ for x in $BUILD_ROOT/../patchfiles/*.midnam ; do cp "$x" $PatchFiles done +# Lua Scripts Files +# got to be careful with names here +for x in $BUILD_ROOT/../scripts/*.lua ; do + cp "$x" $LuaScripts +done + # MackieControl data # got to be careful with names here for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build index f7226bc332..04d2fd1ad0 100755 --- a/tools/osx_packaging/osx_build +++ b/tools/osx_packaging/osx_build @@ -124,6 +124,7 @@ MidiMaps=$Shared/midi_maps ExportFormats=$Shared/export Templates=$Shared/templates PatchFiles=$Shared/patchfiles +LuaScripts=$Shared/scripts MackieControl=$Shared/mcp if [ x$PRINT_SYSDEPS != x ] ; then @@ -161,6 +162,7 @@ mkdir -p $Frameworks/modules mkdir -p $Etc mkdir -p $MackieControl mkdir -p $PatchFiles +mkdir -p $LuaScripts # maybe set variables env="" @@ -373,6 +375,12 @@ for x in $BUILD_ROOT/../patchfiles/*.midnam ; do cp "$x" $PatchFiles done +# Lua Script Files +# got to be careful with names here +for x in $BUILD_ROOT/../scripts/*.lua ; do + cp "$x" $LuaScripts +done + # MackieControl data # got to be careful with names here for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do -- cgit v1.2.3