changes related to OS X main menu & accelerators, plus osx_build script

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2514 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-10-05 00:33:23 +00:00
parent 1bded229cc
commit 17ebbb9d3f
5 changed files with 24 additions and 5 deletions

View file

@ -7,6 +7,7 @@ GTKQUARTZ_ROOT=/opt/gtk
SAE=
WITH_JACK=1
WITH_LADSPA=1
STRIP=1
while [ $# -gt 0 ] ; do
echo "arg = $1"
@ -14,6 +15,7 @@ while [ $# -gt 0 ] ; do
--sae) SAE=1 ; shift ;;
--nojack) WITH_JACK= ; shift ;;
--noladpsa) WITH_LADSPA= ; shift ;;
--nostrip) STRIP= ; shift ;;
esac
done
@ -66,7 +68,9 @@ cp -R Resources $APPROOT
echo "Copying ardour executable ...."
cp ../../gtk2_ardour/ardour-$version $APPROOT/MacOS/Ardour2
strip $APPROOT/MacOS/Ardour2
if test x$STRIP != x ; then
strip $APPROOT/MacOS/Ardour2
fi
if test x$WITH_JACK != x ; then
cp /usr/local/lib/jack/jack_coreaudio.so $Frameworks
cp /usr/local/bin/jackd $APPROOT/MacOS