summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-01-07 09:48:02 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-01-07 09:48:02 +0000
commita7c6a2c01faeaa37cbc25d5c78d4eb3af5d61405 (patch)
treedbdf9eff6afaba466a573ef179fc9991d26f09a9 /tools
parent06779607cba5c1ec26dd6746a695a1877983704f (diff)
packaging for SAE now is a dir that includes the app and some PDFs
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4393 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-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."