summaryrefslogtreecommitdiff
path: root/tools/osx_packaging/osx_build
diff options
context:
space:
mode:
Diffstat (limited to 'tools/osx_packaging/osx_build')
-rwxr-xr-xtools/osx_packaging/osx_build16
1 files changed, 14 insertions, 2 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index eed65c764b..3e77194e6c 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -54,6 +54,8 @@ Shared=$Resources/share
Etc=$Resources/etc
Locale=$Resources/locale
+SAE_PKG_DIR=ArdourSAE
+
if [ x$PRINT_SYSDEPS != x ] ; then
#
# print system dependencies
@@ -146,7 +148,7 @@ fi
echo "Copying ardour executable ...."
cp ../../gtk2_ardour/ardour-$release_version $APPROOT/MacOS/$MAIN_EXECUTABLE
if test x$SAE != x ; then
- cp ../../gtk2_ardour/evtest $APPROOT/MacOS/gtkevents
+ # cp ../../gtk2_ardour/evtest $APPROOT/MacOS/gtkevents
cp Ardour2-SAE.icns $Resources/appIcon.icns
else
cp Ardour2.icns $Resources/appIcon.icns
@@ -296,7 +298,7 @@ if test x$WITH_JACK != x ; then
executables="$executables jackd"
fi
if test x$SAE != x ; then
- executables="$executables gtkevents"
+ executables="$executables"
fi
for exe in $executables; do
@@ -354,5 +356,15 @@ for dylib in $Frameworks/*.dylib $Frameworks/modules/*.so $Surfaces/*.dylib ; do
fi
done
+if [ x$SAE != x ] ; then
+ echo "Creating SAE packaging directory"
+ rm -rf $SAE_PKG_DIR
+ mkdir $SAE_PKG_DIR
+ mv Ardour2.app $SAE_PKG_DIR
+ cp HowToInstallArdourSAE.pdf "$SAE_PKG_DIR/How To Install Ardour SAE.pdf"
+ cp SAE-de-keypad.pdf "$SAE_PKG_DIR/Ardour SAE Shortcuts (keypad).pdf"
+ cp SAE-de-nokeypad.pdf "$SAE_PKG_DIR/Ardour SAE Shortcuts.pdf"
+fi
+
echo "Done."