2011-11-04 17:15:34 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-01-12 12:57:02 -05:00
|
|
|
set -e
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# script for pulling together a MacOSX app bundle.
|
|
|
|
|
2012-05-24 12:59:58 -04:00
|
|
|
GTKSTACK_ROOT=$HOME/gtk/inst
|
|
|
|
BUILD_ROOT=../../build
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2013-06-14 12:12:55 -04:00
|
|
|
# where harvid and xjadeo binaries are cached
|
|
|
|
if test -z "$CACHEDIR" -o ! -d "$CACHEDIR"; then
|
2014-11-11 09:18:45 -05:00
|
|
|
CACHEDIR=/var/tmp
|
2013-06-14 12:12:55 -04:00
|
|
|
fi
|
2014-11-11 09:18:45 -05:00
|
|
|
mkdir -p "$CACHEDIR"
|
2013-06-14 12:12:55 -04:00
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
MIXBUS=
|
2016-05-16 08:42:19 -04:00
|
|
|
MIXBUS32C=
|
2013-10-12 17:04:37 -04:00
|
|
|
WITH_HARVID=1
|
2015-01-30 12:46:06 -05:00
|
|
|
WITH_HARRISON_LV2=
|
2020-06-11 16:25:52 -04:00
|
|
|
WITH_COMMERCIAL_X42_LV2=
|
|
|
|
WITH_GRATIS_X42_LV2=
|
2011-11-04 17:15:34 -04:00
|
|
|
STRIP=1
|
|
|
|
PRINT_SYSDEPS=
|
2020-05-01 14:22:29 -04:00
|
|
|
WITH_NLS=1
|
2016-05-16 11:35:01 -04:00
|
|
|
|
2016-04-07 16:27:03 -04:00
|
|
|
: ${HARRISONCHANNELSTRIP=harrison_channelstrip}
|
2016-09-15 07:05:31 -04:00
|
|
|
: ${HARRISONLV2=harrison_lv2s-n}
|
2020-08-03 11:04:26 -04:00
|
|
|
: ${HARRISONDSPURL=http://rsrc.harrisonconsoles.com/plugins/releases/public}
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2016-05-16 08:42:19 -04:00
|
|
|
. ../define_versions.sh
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
while [ $# -gt 0 ] ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
echo "arg = $1"
|
|
|
|
case $1 in
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# top level build targets
|
|
|
|
#
|
|
|
|
|
2016-02-15 18:05:26 -05:00
|
|
|
--mixbus) MIXBUS=1;
|
|
|
|
WITH_HARRISON_LV2=1 ;
|
2020-06-11 16:25:52 -04:00
|
|
|
WITH_COMMERCIAL_X42_LV2=1
|
|
|
|
WITH_GRATIS_X42_LV2=1
|
2016-02-15 18:05:26 -05:00
|
|
|
STRIP= ;
|
|
|
|
PRODUCT_PKG_DIR=Mixbus;
|
|
|
|
APPNAME=Mixbus ;
|
2016-11-23 15:39:11 -05:00
|
|
|
BUNDLENAME=Mixbus${major_version} ;
|
|
|
|
lower_case_appname=mixbus;
|
2021-03-15 10:51:57 -04:00
|
|
|
BUNDLE_ID_BASE=com.harrisonconsoles
|
2016-02-15 18:05:26 -05:00
|
|
|
shift ;;
|
2016-05-16 08:42:19 -04:00
|
|
|
--mixbus32c) MIXBUS=1;
|
|
|
|
MIXBUS32C=1;
|
|
|
|
WITH_HARRISON_LV2=1 ;
|
2020-06-11 16:25:52 -04:00
|
|
|
WITH_COMMERCIAL_X42_LV2=1
|
|
|
|
WITH_GRATIS_X42_LV2=1
|
2016-05-16 08:42:19 -04:00
|
|
|
STRIP= ;
|
|
|
|
PRODUCT_PKG_DIR=Mixbus32C;
|
2016-11-23 15:39:11 -05:00
|
|
|
lower_case_appname=mixbus32c;
|
2021-03-15 10:51:57 -04:00
|
|
|
BUNDLE_ID_BASE=com.harrisonconsoles
|
2017-03-21 15:49:04 -04:00
|
|
|
APPNAME=Mixbus32C ;
|
2016-11-23 15:39:11 -05:00
|
|
|
BUNDLENAME=Mixbus32C-${major_version} ;
|
2016-05-16 08:42:19 -04:00
|
|
|
shift ;;
|
2016-02-15 18:05:26 -05:00
|
|
|
--public)
|
2016-08-02 07:46:41 -04:00
|
|
|
WITH_HARRISON_LV2=1 ;
|
2016-02-15 18:05:26 -05:00
|
|
|
PRODUCT_PKG_DIR=Ardour;
|
|
|
|
APPNAME=Ardour ;
|
2016-11-23 15:39:11 -05:00
|
|
|
BUNDLENAME=Ardour${major_version} ;
|
|
|
|
lower_case_appname=ardour;
|
2021-03-15 10:51:57 -04:00
|
|
|
BUNDLE_ID_BASE=org.ardour
|
2016-02-15 18:05:26 -05:00
|
|
|
shift ;;
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# specific build flags
|
|
|
|
#
|
|
|
|
|
2013-10-12 17:04:37 -04:00
|
|
|
--noharvid) WITH_HARVID= ; shift ;;
|
2011-11-04 17:15:34 -04:00
|
|
|
--nostrip) STRIP= ; shift ;;
|
|
|
|
--sysdeps) PRINT_SYSDEPS=1; shift ;;
|
2020-05-01 14:22:29 -04:00
|
|
|
--no-nls) WITH_NLS= ; shift ;;
|
2011-11-04 17:15:34 -04:00
|
|
|
--nls) WITH_NLS=1 ; shift ;;
|
2016-04-07 16:27:03 -04:00
|
|
|
--chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;;
|
2020-12-11 22:47:21 -05:00
|
|
|
--stack) GTKSTACK_ROOT=$2 ; shift; shift ;;
|
2019-06-05 09:34:58 -04:00
|
|
|
esac
|
2011-11-04 17:15:34 -04:00
|
|
|
done
|
|
|
|
|
2013-04-30 11:45:22 -04:00
|
|
|
if test -z "$PRODUCT_PKG_DIR" -o -z "$APPNAME"; then
|
|
|
|
echo "application or product-name was not specified"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-11-05 09:35:03 -05:00
|
|
|
echo "Version is $release_version"
|
|
|
|
if [ "x$commit" != "x" ] ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
info_string="$release_version ($commit) built on `hostname` by `whoami` on `date`"
|
2013-11-05 09:35:03 -05:00
|
|
|
else
|
2019-06-05 09:34:58 -04:00
|
|
|
info_string="$release_version built on `hostname` by `whoami` on `date`"
|
2013-11-05 09:35:03 -05:00
|
|
|
fi
|
2011-11-04 17:15:34 -04:00
|
|
|
echo "Info string is $info_string"
|
|
|
|
|
2014-11-17 01:49:16 -05:00
|
|
|
if [ x$DEBUG = xT ]; then
|
|
|
|
STRIP=
|
|
|
|
echo "Debug build, strip disabled"
|
|
|
|
else
|
|
|
|
if test x$STRIP != x ; then
|
|
|
|
echo "No debug build, strip enabled"
|
|
|
|
else
|
|
|
|
echo "No debug build, but strip disabled."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# setup directory structure
|
|
|
|
|
2016-11-23 15:39:11 -05:00
|
|
|
APPDIR=${BUNDLENAME}.app
|
2011-11-04 17:15:34 -04:00
|
|
|
APPROOT=$APPDIR/Contents
|
2012-05-20 16:17:33 -04:00
|
|
|
Frameworks=$APPROOT/lib
|
2011-11-04 17:15:34 -04:00
|
|
|
Resources=$APPROOT/Resources
|
2012-05-20 10:23:49 -04:00
|
|
|
#
|
|
|
|
# Since this is OS X, don't try to distinguish between etc and shared
|
|
|
|
# (machine dependent and independent data) - just put everything
|
|
|
|
# into Resources.
|
2019-06-05 09:34:58 -04:00
|
|
|
#
|
2012-05-20 10:23:49 -04:00
|
|
|
Shared=$Resources
|
|
|
|
Etc=$Resources
|
2011-11-04 17:15:34 -04:00
|
|
|
Locale=$Resources/locale
|
2017-11-29 06:05:21 -05:00
|
|
|
|
2012-05-20 10:23:49 -04:00
|
|
|
Surfaces=$Frameworks/surfaces
|
|
|
|
Panners=$Frameworks/panners
|
2013-10-11 17:12:37 -04:00
|
|
|
Backends=$Frameworks/backends
|
2012-05-20 10:23:49 -04:00
|
|
|
MidiMaps=$Shared/midi_maps
|
2018-01-29 16:29:52 -05:00
|
|
|
PluginMetadata=$Shared/plugin_metadata
|
2019-04-09 07:17:15 -04:00
|
|
|
MixerSettings=$Shared/mixer_settings
|
2012-05-20 10:23:49 -04:00
|
|
|
ExportFormats=$Shared/export
|
|
|
|
Templates=$Shared/templates
|
|
|
|
PatchFiles=$Shared/patchfiles
|
2016-02-23 09:44:41 -05:00
|
|
|
LuaScripts=$Shared/scripts
|
2021-12-21 16:21:03 -05:00
|
|
|
MediaClips=$Shared/media
|
2020-04-20 18:29:21 -04:00
|
|
|
WebSurfaces=$Shared/web_surfaces
|
2012-05-20 16:17:33 -04:00
|
|
|
MackieControl=$Shared/mcp
|
2017-07-03 17:31:27 -04:00
|
|
|
OSC=$Shared/osc
|
2016-05-31 12:32:30 -04:00
|
|
|
Themes=$Shared/themes
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
if [ x$PRINT_SYSDEPS != x ] ; then
|
|
|
|
#
|
|
|
|
# print system dependencies
|
|
|
|
#
|
|
|
|
|
2021-03-11 17:09:46 -05:00
|
|
|
for file in $APPROOT/MacOS/* $Frameworks/* ; do
|
2011-11-04 17:15:34 -04:00
|
|
|
if ! file $file | grep -qs Mach-O ; then
|
|
|
|
continue
|
|
|
|
fi
|
2019-06-05 09:34:58 -04:00
|
|
|
otool -L $file | awk '{print $1}' | egrep -v "(^@executable_path|^Ardour[0-9][.0-9]*.app)"
|
|
|
|
done | sort | uniq
|
|
|
|
exit 0
|
2011-11-04 17:15:34 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Removing old $APPDIR tree ..."
|
|
|
|
|
|
|
|
rm -rf $APPDIR
|
|
|
|
|
|
|
|
echo "Building new app directory structure ..."
|
|
|
|
|
|
|
|
# only bother to make the longest paths
|
|
|
|
|
|
|
|
mkdir -p $APPROOT/MacOS
|
|
|
|
mkdir -p $APPROOT/Resources
|
|
|
|
mkdir -p $Surfaces
|
|
|
|
mkdir -p $Panners
|
2013-10-11 17:12:37 -04:00
|
|
|
mkdir -p $Backends
|
2011-11-04 17:15:34 -04:00
|
|
|
mkdir -p $MidiMaps
|
|
|
|
mkdir -p $ExportFormats
|
|
|
|
mkdir -p $Etc
|
2012-05-20 16:17:33 -04:00
|
|
|
mkdir -p $MackieControl
|
2017-07-03 17:31:27 -04:00
|
|
|
mkdir -p $OSC
|
2014-04-18 05:07:43 -04:00
|
|
|
mkdir -p $PatchFiles
|
2016-02-23 09:44:41 -05:00
|
|
|
mkdir -p $LuaScripts
|
2016-06-01 17:04:10 -04:00
|
|
|
mkdir -p $Themes
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2016-11-23 15:39:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
EXECUTABLE=${BUNDLENAME}
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# if we're not going to bundle JACK, make sure we can find
|
|
|
|
# jack in the places where it might be
|
|
|
|
#
|
|
|
|
|
2016-11-23 15:39:11 -05:00
|
|
|
env=""
|
2011-11-13 08:23:08 -05:00
|
|
|
env="$env<key>PATH</key><string>/usr/local/bin:/opt/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>"
|
|
|
|
env="$env<key>DYLIB_FALLBACK_LIBRARY_PATH</key><string>/usr/local/lib:/opt/lib</string>"
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
env="<key>LSEnvironment</key><dict>$env<key>ARDOUR_BUNDLED</key><string>true</string></dict>"
|
|
|
|
|
2015-03-23 08:33:08 -04:00
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# edit plist
|
|
|
|
sed -e "s?@ENV@?$env?g" \
|
2013-11-05 09:35:03 -05:00
|
|
|
-e "s?@VERSION@?$release_version?g" \
|
2015-03-23 08:33:08 -04:00
|
|
|
-e "s?@INFOSTRING@?$info_string?g" \
|
2021-03-15 10:51:57 -04:00
|
|
|
-e "s?@IDBASE@?$BUNDLE_ID_BASE?g" \
|
2015-03-23 08:33:08 -04:00
|
|
|
-e "s?@IDSUFFIX@?$EXECUTABLE?g" \
|
2016-11-23 15:39:11 -05:00
|
|
|
-e "s?@BUNDLENAME@?$BUNDLENAME?g" \
|
2015-03-23 08:33:08 -04:00
|
|
|
-e "s?@EXECUTABLE@?$EXECUTABLE?g" < Info.plist.in > Info.plist
|
2011-11-04 17:15:34 -04:00
|
|
|
# and plist strings
|
|
|
|
sed -e "s?@APPNAME@?$appname?" \
|
|
|
|
-e "s?@ENV@?$env?g" \
|
2013-11-05 09:35:03 -05:00
|
|
|
-e "s?@VERSION@?$release_version?g" \
|
2011-11-04 17:15:34 -04:00
|
|
|
-e "s?@INFOSTRING@?$info_string?g" < InfoPlist.strings.in > Resources/InfoPlist.strings || exit 1
|
|
|
|
|
|
|
|
# copy static files
|
|
|
|
|
|
|
|
cp Info.plist $APPROOT
|
|
|
|
cp -R Resources $APPROOT
|
|
|
|
|
2014-11-11 09:35:06 -05:00
|
|
|
# ..and clean up
|
2014-11-11 15:46:29 -05:00
|
|
|
rm -f Info.plist
|
|
|
|
rm -f Resources/InfoPlist.strings
|
2014-11-11 09:35:06 -05:00
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# if we build a bundle without jack, then
|
2015-03-23 08:33:08 -04:00
|
|
|
# make the Ardour executable a helper
|
2011-11-04 17:15:34 -04:00
|
|
|
# script that checks to see if JACK is
|
|
|
|
# installed.
|
|
|
|
#
|
2019-10-23 16:55:10 -04:00
|
|
|
#cp startup_script $APPROOT/MacOS/$EXECUTABLE
|
|
|
|
#chmod 775 $APPROOT/MacOS/$EXECUTABLE
|
|
|
|
#MAIN_EXECUTABLE=Ardour.bin ## used in startup_script
|
|
|
|
|
|
|
|
# For Catalina we cannot use a shell script wrapper
|
|
|
|
# the binary mentioned in the .plist must match
|
|
|
|
# the actual executable, otherwise the user is
|
|
|
|
# not prompted to grant permissions to access the audio-device
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2019-10-23 16:55:10 -04:00
|
|
|
MAIN_EXECUTABLE=$EXECUTABLE
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
echo "Copying ardour executable ...."
|
|
|
|
cp $BUILD_ROOT/gtk2_ardour/ardour-$release_version $APPROOT/MacOS/$MAIN_EXECUTABLE
|
2020-05-01 14:28:09 -04:00
|
|
|
if test x$MIXBUS32C != x ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
cp Mixbus32C.icns $Resources/appIcon.icns
|
2011-11-04 17:15:34 -04:00
|
|
|
elif test x$MIXBUS != x ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
cp Mixbus.icns $Resources/appIcon.icns
|
2011-11-04 17:15:34 -04:00
|
|
|
else
|
2019-06-05 09:34:58 -04:00
|
|
|
cp Ardour.icns $Resources/appIcon.icns
|
2011-11-04 17:15:34 -04:00
|
|
|
fi
|
2011-11-09 20:28:54 -05:00
|
|
|
cp typeArdour.icns $Resources/
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2015-01-12 12:57:02 -05:00
|
|
|
set +e # things below are not error-free (optional files etc) :(
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# copy locale files
|
|
|
|
if test x$WITH_NLS != x ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
echo "NLS support ..."
|
|
|
|
echo "I hope you remembered to run waf i18n"
|
|
|
|
LINGUAS=
|
|
|
|
|
|
|
|
for pkg in gtk2_ardour libs/ardour libs/gtkmm2ext ; do
|
|
|
|
files=`find ../../$pkg -name "*.mo"`
|
|
|
|
|
|
|
|
#
|
|
|
|
# the package name is appended with a number so that
|
|
|
|
# it can be parallel installed during a regular install
|
|
|
|
# with older (and newer) versions. it is just the major
|
|
|
|
# number of the release (i.e. leading digits)
|
|
|
|
#
|
|
|
|
|
|
|
|
vsuffix=`echo $release_version | sed 's/^\([0-9][0-9]*\).*/\1/'`
|
|
|
|
|
|
|
|
if [ -z "$files" ]; then
|
|
|
|
echo ""
|
|
|
|
echo "!!!! WARNING !!!! - Did not find any .mo files in ../../$pkg"
|
|
|
|
echo ""
|
|
|
|
fi
|
|
|
|
|
|
|
|
for file in $files
|
|
|
|
do
|
|
|
|
echo $file
|
|
|
|
lang=`basename $file | sed 's/\.mo//'`
|
|
|
|
mkdir -p $Locale/$lang/LC_MESSAGES
|
|
|
|
cp $file $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo
|
|
|
|
echo copy $file to $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo
|
|
|
|
if echo $LINGUAS | grep $lang >/dev/null 2>&1 ; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
LINGUAS="$LINGUAS $lang"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
for l in $LINGUAS
|
2013-10-22 11:08:50 -04:00
|
|
|
do
|
2019-06-05 09:34:58 -04:00
|
|
|
if [ -d $GTKSTACK_ROOT/share/locale/$l ] ; then
|
|
|
|
echo "Copying GTK i18n files for $l..."
|
|
|
|
cp -r $GTKSTACK_ROOT/share/locale/$l $Locale
|
|
|
|
else
|
|
|
|
# try with just the language spec
|
|
|
|
just_lang=`echo $l | sed 's/_[A-Z][A-Z]$//'`
|
|
|
|
if [ -d $GTKSTACK_ROOT/share/locale/$just_lang ] ; then
|
|
|
|
echo "Copying GTK i18n files for $l..."
|
|
|
|
cp -r $GTKSTACK_ROOT/share/locale/$just_lang $Locale
|
|
|
|
fi
|
|
|
|
fi
|
2013-10-22 11:08:50 -04:00
|
|
|
done
|
2011-11-04 17:15:34 -04:00
|
|
|
else
|
2019-06-05 09:34:58 -04:00
|
|
|
echo "Skipping NLS support"
|
2011-11-04 17:15:34 -04:00
|
|
|
fi
|
|
|
|
|
2012-05-24 12:59:58 -04:00
|
|
|
#
|
|
|
|
# Copy stuff that may be dynamically loaded
|
2019-06-05 09:34:58 -04:00
|
|
|
#
|
2012-05-24 12:59:58 -04:00
|
|
|
|
2021-03-11 17:09:46 -05:00
|
|
|
#cp -R $GTKSTACK_ROOT/etc/* $Etc
|
|
|
|
#cp -R $GTKSTACK_ROOT/lib/charset.alias $Resources
|
2012-05-24 12:59:58 -04:00
|
|
|
|
|
|
|
# We rely on clearlooks, so include a version from our own build tree
|
2013-03-07 09:42:28 -05:00
|
|
|
# this one is special - we will set GTK_PATH to $Frameworks/gtkengines
|
2013-03-07 09:39:27 -05:00
|
|
|
|
2013-03-07 09:42:28 -05:00
|
|
|
GTK_ENGINE_DIR=$Frameworks/gtkengines/engines
|
2013-03-07 09:39:27 -05:00
|
|
|
mkdir -p $GTK_ENGINE_DIR
|
|
|
|
|
|
|
|
echo "Copying GTK engines ..."
|
2021-03-12 12:14:28 -05:00
|
|
|
cp $BUILD_ROOT/libs/clearlooks-newer/libclearlooks.dylib $GTK_ENGINE_DIR/libclearlooks.so
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2012-05-20 10:06:21 -04:00
|
|
|
# Control Surface shared libraries
|
2011-11-04 17:15:34 -04:00
|
|
|
cp $BUILD_ROOT/libs/surfaces/*/libardour_*.dylib $Surfaces
|
2012-05-24 13:59:09 -04:00
|
|
|
cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp*.dylib $Frameworks
|
2012-05-20 10:06:21 -04:00
|
|
|
|
2012-05-20 11:20:27 -04:00
|
|
|
# Panners
|
2011-11-04 17:15:34 -04:00
|
|
|
cp $BUILD_ROOT/libs/panners/*/lib*.dylib $Panners
|
2012-05-20 11:20:27 -04:00
|
|
|
|
2013-10-11 17:12:37 -04:00
|
|
|
# Backends
|
2020-03-26 14:00:11 -04:00
|
|
|
cp $BUILD_ROOT/libs/backends/*/lib*.dylib $Backends
|
2012-05-20 11:20:27 -04:00
|
|
|
|
|
|
|
# Export Formats/Presets
|
2020-02-23 09:26:48 -05:00
|
|
|
for f in $BUILD_ROOT/../share/export/*.preset $BUILD_ROOT/../share/export/*.format ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
cp "$f" $ExportFormats ;
|
2012-05-20 11:20:27 -04:00
|
|
|
done
|
2012-05-20 10:06:21 -04:00
|
|
|
|
2017-08-23 17:54:51 -04:00
|
|
|
#Session templates
|
2021-03-11 21:28:50 -05:00
|
|
|
cp -R $BUILD_ROOT/../share/templates $Templates
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2018-01-29 16:29:52 -05:00
|
|
|
# PluginMetadata
|
2021-03-11 21:28:50 -05:00
|
|
|
cp -R $BUILD_ROOT/../share/plugin_metadata $PluginMetadata
|
2018-01-29 16:29:52 -05:00
|
|
|
|
2012-05-20 10:06:21 -04:00
|
|
|
# MidiMaps
|
|
|
|
# got to be careful with names here
|
2020-02-23 09:26:48 -05:00
|
|
|
for x in $BUILD_ROOT/../share/midi_maps/*.map ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
cp "$x" $MidiMaps
|
2012-05-20 10:06:21 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
# MIDNAM Patch Files
|
|
|
|
# got to be careful with names here
|
2020-02-23 09:26:48 -05:00
|
|
|
for x in $BUILD_ROOT/../share/patchfiles/*.midnam ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
cp "$x" $PatchFiles
|
2012-05-20 10:06:21 -04:00
|
|
|
done
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2016-02-23 09:44:41 -05:00
|
|
|
# Lua Script Files
|
|
|
|
# got to be careful with names here
|
2020-02-23 14:48:02 -05:00
|
|
|
for x in $BUILD_ROOT/../share/scripts/*.lua ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
BN=$(basename $x)
|
|
|
|
if test "${BN:0:1}" = "_"; then
|
|
|
|
continue;
|
|
|
|
fi
|
|
|
|
cp "$x" $LuaScripts
|
2016-02-23 09:44:41 -05:00
|
|
|
done
|
|
|
|
|
2020-04-20 18:29:21 -04:00
|
|
|
# recusively copy web-surface html/js
|
2021-03-11 21:28:50 -05:00
|
|
|
cp -R $BUILD_ROOT/../share/web_surfaces $WebSurfaces
|
2020-04-20 18:29:21 -04:00
|
|
|
rm $WebSurfaces/wscript
|
|
|
|
|
2012-05-20 10:06:21 -04:00
|
|
|
# MackieControl data
|
|
|
|
# got to be careful with names here
|
2020-02-23 09:26:48 -05:00
|
|
|
for x in $BUILD_ROOT/../share/mcp/*.device $BUILD_ROOT/../share/mcp/*.profile ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
cp "$x" $MackieControl
|
2012-05-20 10:06:21 -04:00
|
|
|
done
|
2012-05-08 11:25:57 -04:00
|
|
|
|
2017-07-03 17:31:27 -04:00
|
|
|
# OSC data
|
|
|
|
# got to be careful with names here
|
2020-02-23 09:26:48 -05:00
|
|
|
for x in $BUILD_ROOT/../share/osc/*.preset ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
cp "$x" $OSC
|
2017-07-03 17:31:27 -04:00
|
|
|
done
|
|
|
|
|
2019-04-09 07:17:15 -04:00
|
|
|
# Mixbus MixerSettings (if any)
|
|
|
|
for x in $BUILD_ROOT/../mixer_settings/*.lua ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
mkdir -p $MixerSettings # create on demand
|
|
|
|
cp "$x" $MixerSettings
|
2019-04-09 07:17:15 -04:00
|
|
|
done
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# VAMP plugins that we use
|
|
|
|
cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.dylib $Frameworks
|
2019-09-02 08:35:23 -04:00
|
|
|
cp $BUILD_ROOT/libs/vamp-pyin/libardourvamppyin.dylib $Frameworks
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2014-11-11 09:20:16 -05:00
|
|
|
# Suil modules (new dir 'build-stack')
|
|
|
|
if test -d $GTKSTACK_ROOT/lib/suil-0/ ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
cp $GTKSTACK_ROOT/lib/suil-0/lib* $Frameworks
|
2014-11-11 09:20:16 -05:00
|
|
|
fi
|
|
|
|
|
2014-03-17 09:40:29 -04:00
|
|
|
# VST scanner app and wrapper script, if they exist
|
2014-11-11 09:20:16 -05:00
|
|
|
if test -d $BUILD_ROOT/libs/fst ; then
|
2020-09-18 12:54:45 -04:00
|
|
|
cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $Frameworks/ || true
|
|
|
|
cp $BUILD_ROOT/libs/fst/ardour-vst3-scanner* $Frameworks/ || true
|
2014-11-11 09:20:16 -05:00
|
|
|
fi
|
2021-07-22 16:45:32 -04:00
|
|
|
if test -d $BUILD_ROOT/libs/auscan ; then
|
|
|
|
cp $BUILD_ROOT/libs/auscan/ardour-au-scanner* $Frameworks/ || true
|
|
|
|
fi
|
2014-03-17 09:40:29 -04:00
|
|
|
|
|
|
|
# vfork wrapper
|
2014-11-11 09:20:16 -05:00
|
|
|
if test -f $BUILD_ROOT/libs/vfork/ardour-exec-wrapper ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
cp $BUILD_ROOT/libs/vfork/ardour-exec-wrapper $Frameworks/
|
2014-11-11 09:20:16 -05:00
|
|
|
fi
|
2014-03-17 09:40:29 -04:00
|
|
|
|
2021-03-11 17:09:46 -05:00
|
|
|
# session utils start script (temp file)
|
|
|
|
cat >> $Frameworks/ardour-util.sh << EOF
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
BIN_DIR=\$(dirname "\$0")
|
|
|
|
BUNDLE_DIR=\$(dirname "\$BIN_DIR")
|
|
|
|
|
|
|
|
export ARDOUR_DATA_PATH="\$BUNDLE_DIR/Resources"
|
|
|
|
export ARDOUR_CONFIG_PATH="\$BUNDLE_DIR/Resources"
|
|
|
|
export ARDOUR_DLL_PATH="\$BUNDLE_DIR/lib"
|
|
|
|
export VAMP_PATH="\$BUNDLE_DIR/lib"\${VAMP_PATH:+:\$VAMP_PATH}
|
|
|
|
|
|
|
|
SELF=\$(basename "\$0")
|
|
|
|
exec "\$BUNDLE_DIR/lib/\$SELF" "\$@"
|
|
|
|
EOF
|
|
|
|
chmod +x $Frameworks/ardour-util.sh
|
|
|
|
|
2016-10-14 19:41:40 -04:00
|
|
|
# session-utils
|
|
|
|
HAVE_SESSION_UTILS=false
|
|
|
|
for file in $BUILD_ROOT/session_utils/${lower_case_appname}${major_version}-*; do
|
|
|
|
BN=$(basename $file)
|
2021-03-11 17:09:46 -05:00
|
|
|
cp $file $Frameworks/
|
2016-10-14 19:41:40 -04:00
|
|
|
if test x$STRIP = xall ; then
|
|
|
|
strip -s $Frameworks/${BN}
|
|
|
|
fi
|
2021-03-11 21:28:50 -05:00
|
|
|
cp -R $Frameworks/ardour-util.sh ${APPROOT}/MacOS/${BN}
|
2016-10-14 19:41:40 -04:00
|
|
|
HAVE_SESSION_UTILS=true
|
|
|
|
done
|
|
|
|
|
2020-03-26 14:00:11 -04:00
|
|
|
if test -x $BUILD_ROOT/luasession/luasession; then
|
2019-06-04 09:15:21 -04:00
|
|
|
BN=${lower_case_appname}${major_version}-lua
|
2021-03-11 17:09:46 -05:00
|
|
|
cp $BUILD_ROOT/luasession/luasession $Frameworks/$BN
|
2019-06-04 09:15:21 -04:00
|
|
|
if test x$STRIP = xall ; then
|
|
|
|
strip -s $Frameworks/${BN}
|
|
|
|
fi
|
2021-03-11 21:28:50 -05:00
|
|
|
cp -R $Frameworks/ardour-util.sh ${APPROOT}/MacOS/${BN}
|
2019-06-04 09:15:21 -04:00
|
|
|
HAVE_SESSION_UTILS=true
|
|
|
|
fi
|
|
|
|
|
2017-09-06 18:45:29 -04:00
|
|
|
# dynamically loaded NSS/SSL libs
|
|
|
|
nsslibs="libsoftokn3.dylib libnsspem.dylib libnssckbi.dylib libfreebl3.dylib libnssdbm3.dylib libplds4.dylib"
|
|
|
|
for nsslib in $nsslibs; do
|
2021-03-11 17:09:46 -05:00
|
|
|
cp $GTKSTACK_ROOT/lib/$nsslib $Frameworks/ 2>/dev/null || true
|
2017-09-06 18:45:29 -04:00
|
|
|
done
|
|
|
|
|
2015-08-07 13:30:07 -04:00
|
|
|
# TODO check if this is still needed, even when building on 10.5
|
|
|
|
if file $BUILD_ROOT/gtk2_ardour/ardour-$release_version | grep -q ppc; then
|
|
|
|
STDCPP='|libstdc\+\+'
|
|
|
|
else
|
|
|
|
STDCPP=
|
|
|
|
fi
|
2014-03-17 09:40:29 -04:00
|
|
|
|
2019-06-05 09:34:58 -04:00
|
|
|
while [ true ] ; do
|
|
|
|
missing=false
|
2021-03-11 17:09:46 -05:00
|
|
|
for file in $APPROOT/MacOS/* $Frameworks/* $Panners/*.dylib $Backends/*.dylib $Surfaces/*.dylib $GTK_ENGINE_DIR/*.dylib ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
if ! file $file | grep -qs Mach-O ; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
# libffi contains "S" (other section symbols) that should not be stripped.
|
2021-01-03 23:16:27 -05:00
|
|
|
if [[ $file = *"libffi"* ]] ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
continue
|
|
|
|
fi
|
2014-11-17 01:49:16 -05:00
|
|
|
|
2019-06-05 09:34:58 -04:00
|
|
|
if test x$STRIP != x ; then
|
2021-01-03 23:16:27 -05:00
|
|
|
# NSS is dynamically loaded, symbols cannot be stripped
|
2021-01-04 00:11:10 -05:00
|
|
|
if test "`basename $file`" = "libnspr4.dylib" -o "`basename $file`" = "libplds4.dylib"; then
|
2021-01-03 23:16:27 -05:00
|
|
|
# only remove debug and local symbols
|
|
|
|
strip -S -x -u -r -arch all $file &>/dev/null
|
|
|
|
else
|
|
|
|
strip -u -r -arch all $file &>/dev/null
|
|
|
|
fi
|
2011-11-04 17:15:34 -04:00
|
|
|
fi
|
2019-06-05 09:34:58 -04:00
|
|
|
|
2020-10-22 07:43:10 -04:00
|
|
|
deps=`otool -L $file | awk '{print $1}' | egrep "($GTKSTACK_ROOT|/opt/|/local/|libs/$STDCPP)" | grep -v 'libjack\.' | grep -v "$(basename $file)"`
|
2019-06-05 09:34:58 -04:00
|
|
|
# echo -n "."
|
|
|
|
for dep in $deps ; do
|
|
|
|
base=`basename $dep`
|
|
|
|
if ! test -f $Frameworks/$base; then
|
|
|
|
if echo $dep | grep -sq '^libs' ; then
|
|
|
|
cp $BUILD_ROOT/$dep $Frameworks
|
|
|
|
else
|
|
|
|
cp $dep $Frameworks
|
|
|
|
fi
|
|
|
|
missing=true
|
2019-06-05 09:36:29 -04:00
|
|
|
chmod 755 $Frameworks/$base
|
2019-06-05 09:34:58 -04:00
|
|
|
fi
|
|
|
|
done
|
2011-11-04 17:15:34 -04:00
|
|
|
done
|
2019-06-05 09:34:58 -04:00
|
|
|
if test x$missing = xfalse ; then
|
|
|
|
# everything has been found
|
|
|
|
break
|
|
|
|
fi
|
2011-11-04 17:15:34 -04:00
|
|
|
done
|
|
|
|
echo
|
|
|
|
|
|
|
|
echo "Copying other stuff to $APPDIR ..."
|
|
|
|
|
2016-02-23 14:10:45 -05:00
|
|
|
cp $BUILD_ROOT/gtk2_ardour/ardour.keys $Resources
|
2011-11-04 17:15:34 -04:00
|
|
|
cp $BUILD_ROOT/gtk2_ardour/ardour.menus $Resources
|
2014-09-13 16:18:56 -04:00
|
|
|
cp $BUILD_ROOT/gtk2_ardour/default_ui_config $Resources
|
2014-12-08 11:03:47 -05:00
|
|
|
cp $BUILD_ROOT/gtk2_ardour/clearlooks.rc $Resources
|
|
|
|
|
2014-12-08 18:19:11 -05:00
|
|
|
# Copied directly from source tree
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2016-05-17 07:33:37 -04:00
|
|
|
mkdir ${Resources}/icons
|
|
|
|
mkdir ${Resources}/resources
|
2017-03-02 13:39:35 -05:00
|
|
|
cp ../../system_config $Resources/system_config
|
2016-05-17 07:33:37 -04:00
|
|
|
cp ../../gtk2_ardour/icons/*.png ${Resources}/icons/
|
|
|
|
cp -r ../../gtk2_ardour/icons/cursor_* ${Resources}/icons/
|
|
|
|
cp ../../gtk2_ardour/ArdourMono.ttf $Shared
|
2019-12-05 17:33:27 -05:00
|
|
|
cp ../../gtk2_ardour/ArdourSans.ttf $Shared
|
2016-05-17 07:33:37 -04:00
|
|
|
cp ../../gtk2_ardour/resources/${PRODUCT_PKG_DIR}-* ${Resources}/resources/
|
2012-01-19 17:24:07 -05:00
|
|
|
|
2016-05-31 15:25:18 -04:00
|
|
|
|
|
|
|
# Themes: only install those named for this app
|
2016-07-18 11:50:34 -04:00
|
|
|
cp ../../gtk2_ardour/themes/*-${lower_case_appname}.colors $Themes
|
2016-05-31 12:32:30 -04:00
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# go through and recursively remove any .svn dirs in the bundle
|
|
|
|
for svndir in `find $APPDIR -name .svn -type dir`; do
|
2019-06-05 09:34:58 -04:00
|
|
|
rm -rf $svndir
|
2011-11-04 17:15:34 -04:00
|
|
|
done
|
|
|
|
|
2021-03-11 17:09:46 -05:00
|
|
|
# remove temp session utils start script
|
|
|
|
rm $Frameworks/ardour-util.sh
|
2016-10-14 19:41:40 -04:00
|
|
|
|
2013-10-20 11:24:59 -04:00
|
|
|
# install bundled LV2s to <app>/Contents/lib/LV2/
|
|
|
|
cp -R $BUILD_ROOT/libs/LV2 $Frameworks/
|
|
|
|
|
2020-10-22 07:43:10 -04:00
|
|
|
# lv2 core, classifications
|
|
|
|
for file in $GTKSTACK_ROOT/lib/lv2/*.lv2; do
|
|
|
|
BN=$(basename $file)
|
2020-10-28 01:14:31 -04:00
|
|
|
mkdir -p $Frameworks/LV2/$BN
|
2020-10-28 00:52:54 -04:00
|
|
|
cp $GTKSTACK_ROOT/lib/lv2/${BN}/*.ttl $Frameworks/LV2/${BN}/
|
2020-10-22 07:43:10 -04:00
|
|
|
done
|
2015-01-28 17:08:06 -05:00
|
|
|
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
# now fix up the executables
|
|
|
|
echo "Fixing up executable dependency names ..."
|
|
|
|
executables=$MAIN_EXECUTABLE
|
2016-10-14 19:41:40 -04:00
|
|
|
if test "$HAVE_SESSION_UTILS" = true ; then
|
|
|
|
for file in $Frameworks/${lower_case_appname}${major_version}-*; do
|
|
|
|
BN=$(basename $file)
|
|
|
|
executables="$executables ../lib/${BN}"
|
|
|
|
done
|
|
|
|
fi
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2016-11-15 19:23:21 -05:00
|
|
|
if test -f "$Frameworks/ardour-vst-scanner"; then
|
|
|
|
executables="$executables ../lib/ardour-vst-scanner"
|
|
|
|
fi
|
|
|
|
|
2020-09-18 12:54:45 -04:00
|
|
|
if test -f "$Frameworks/ardour-vst3-scanner"; then
|
|
|
|
executables="$executables ../lib/ardour-vst3-scanner"
|
|
|
|
fi
|
|
|
|
|
2021-07-22 18:38:18 -04:00
|
|
|
if test -f "$Frameworks/ardour-au-scanner"; then
|
2021-07-22 18:11:01 -04:00
|
|
|
executables="$executables ../lib/ardour-au-scanner"
|
|
|
|
fi
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
for exe in $executables; do
|
2019-06-05 09:34:58 -04:00
|
|
|
echo "Processing Executable: $exe"
|
|
|
|
EXE=$APPROOT/MacOS/$exe
|
|
|
|
changes=""
|
2020-10-22 07:43:10 -04:00
|
|
|
for lib in `otool -L $EXE | egrep "($GTKSTACK_ROOT|/opt/|/local/|libs/$STDCPP)" | awk '{print $1}' | grep -v 'libjack\.'` ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
base=`basename $lib`
|
|
|
|
changes="$changes -change $lib @executable_path/../lib/$base"
|
|
|
|
done
|
|
|
|
if test "x$changes" != "x" ; then
|
|
|
|
install_name_tool $changes $EXE
|
|
|
|
fi
|
2011-11-04 17:15:34 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
echo "Fixing up library names ..."
|
|
|
|
# now do the same for all the libraries we include
|
2021-03-11 17:09:46 -05:00
|
|
|
for libdir in $Frameworks $Surfaces $Panners $Backends $Frameworks/LV2/* $GTK_ENGINE_DIR; do
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2021-03-11 17:09:46 -05:00
|
|
|
libbase=`echo "$libdir" | sed 's#^'$Frameworks'##'`
|
2019-06-05 09:34:58 -04:00
|
|
|
|
|
|
|
for dylib in $libdir/*.dylib $libdir/*.so ; do
|
|
|
|
|
|
|
|
# skip symlinks
|
|
|
|
if test -L $dylib ; then
|
2021-03-11 17:09:46 -05:00
|
|
|
echo "FOUND SYMLINK"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
if ! test -f $dylib ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# change all the dependencies
|
|
|
|
|
|
|
|
changes=""
|
2020-10-22 07:43:10 -04:00
|
|
|
for lib in `otool -L $dylib | egrep "($GTKSTACK_ROOT|/opt/|/local/|libs/$STDCPP)" | awk '{print $1}' | grep -v 'libjack\.'` ; do
|
2019-06-05 09:34:58 -04:00
|
|
|
base=`basename $lib`
|
2021-03-11 17:09:46 -05:00
|
|
|
if test -f $Frameworks/$base ; then
|
2019-06-05 09:34:58 -04:00
|
|
|
changes="$changes -change $lib @executable_path/../lib/$base"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if test "x$changes" != x ; then
|
|
|
|
if install_name_tool $changes $dylib ; then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# now the change what the library thinks its own name is
|
|
|
|
|
|
|
|
base=`basename $dylib`
|
2021-03-11 17:09:46 -05:00
|
|
|
install_name_tool -id @executable_path/../lib$libbase/$base $dylib
|
2011-11-13 08:23:08 -05:00
|
|
|
done
|
2011-11-04 17:15:34 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
#
|
|
|
|
# and now ... the DMG
|
2019-06-05 09:34:58 -04:00
|
|
|
#
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
rm -rf $PRODUCT_PKG_DIR
|
|
|
|
mkdir $PRODUCT_PKG_DIR
|
|
|
|
|
2013-06-08 07:29:04 -04:00
|
|
|
DMGWINBOTTOM=440
|
2015-01-16 16:24:04 -05:00
|
|
|
DMGBACKGROUND=dmgbg
|
2013-06-08 07:29:04 -04:00
|
|
|
|
2020-05-01 14:28:09 -04:00
|
|
|
if [ x$MIXBUS != x ] ; then
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2019-06-05 09:34:58 -04:00
|
|
|
# Mixbus packaging
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2019-06-05 09:34:58 -04:00
|
|
|
echo "Creating Mixbus packaging directory"
|
|
|
|
mv $APPDIR $PRODUCT_PKG_DIR/
|
|
|
|
DMGBACKGROUND=dmgbgMB
|
|
|
|
else
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2019-06-05 09:34:58 -04:00
|
|
|
echo "Creating $APPNAME packaging directory"
|
|
|
|
mv $APPDIR $PRODUCT_PKG_DIR/
|
2011-11-04 17:15:34 -04:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
2020-12-13 19:54:14 -05:00
|
|
|
DMG_ARCH=""
|
2015-07-22 18:04:41 -04:00
|
|
|
if file ${PRODUCT_PKG_DIR}/$APPROOT/MacOS/$MAIN_EXECUTABLE | grep -q x86_64; then
|
|
|
|
OSX_ARCH=x86_64
|
2020-12-13 15:54:51 -05:00
|
|
|
OSX_X42URI=x42-plugins.com/x42/osx
|
|
|
|
OSX_X42ID=osx
|
2015-07-22 18:04:41 -04:00
|
|
|
OSX_BENSID=osx64
|
|
|
|
elif file ${PRODUCT_PKG_DIR}/$APPROOT/MacOS/$MAIN_EXECUTABLE | grep -q ppc; then
|
|
|
|
OSX_ARCH=ppc
|
2020-12-13 15:54:51 -05:00
|
|
|
OSX_X42URI=x42-plugins.com/x42/osx
|
|
|
|
OSX_X42ID=osx
|
2016-03-07 13:41:30 -05:00
|
|
|
OSX_BENSID=osxppc
|
2020-12-11 22:47:21 -05:00
|
|
|
elif file ${PRODUCT_PKG_DIR}/$APPROOT/MacOS/$MAIN_EXECUTABLE | grep -q arm64; then
|
|
|
|
OSX_ARCH=arm64
|
2020-12-13 15:54:51 -05:00
|
|
|
OSX_X42URI=x42-plugins.com/x42/mac
|
|
|
|
OSX_X42ID="macOS-arm64"
|
2020-12-13 19:54:14 -05:00
|
|
|
DMG_ARCH="-arm64"
|
2020-12-11 22:47:21 -05:00
|
|
|
OSX_BENSID=macarm64
|
2015-07-22 18:04:41 -04:00
|
|
|
else
|
|
|
|
OSX_ARCH=i386
|
2020-12-13 15:54:51 -05:00
|
|
|
OSX_X42URI=x42-plugins.com/x42/osx
|
|
|
|
OSX_X42ID=osx
|
2015-07-22 18:04:41 -04:00
|
|
|
OSX_BENSID=osx32
|
|
|
|
fi
|
|
|
|
|
2015-01-30 12:46:06 -05:00
|
|
|
if test x$WITH_HARRISON_LV2 != x ; then
|
2015-07-02 05:20:10 -04:00
|
|
|
curl -s -S --fail -# \
|
2016-09-15 07:05:31 -04:00
|
|
|
-z "${CACHEDIR}/${HARRISONLV2}.${OSX_BENSID}.zip" \
|
|
|
|
-o "${CACHEDIR}/${HARRISONLV2}.${OSX_BENSID}.zip" \
|
2016-09-22 18:47:33 -04:00
|
|
|
"${HARRISONDSPURL}/${HARRISONLV2}.${OSX_BENSID}.zip"
|
2015-07-02 05:20:10 -04:00
|
|
|
|
|
|
|
mkdir -p "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2"
|
|
|
|
bsdtar -C "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/" -xf \
|
2016-09-15 07:05:31 -04:00
|
|
|
"${CACHEDIR}/${HARRISONLV2}.${OSX_BENSID}.zip"
|
2015-01-30 12:46:06 -05:00
|
|
|
fi
|
|
|
|
|
2013-06-08 07:29:04 -04:00
|
|
|
if test x$WITH_HARVID != x ; then
|
|
|
|
echo "installing video tools.."
|
2018-11-30 12:10:35 -05:00
|
|
|
if test $OSX_ARCH = ppc; then
|
|
|
|
# EOL
|
|
|
|
HARVID_VERSION=v0.8.2
|
|
|
|
XJADEO_VERSION=v0.8.8
|
|
|
|
else
|
|
|
|
HARVID_VERSION=$(curl -s -S http://ardour.org/files/video-tools/harvid_version.txt)
|
|
|
|
XJADEO_VERSION=$(curl -s -S http://ardour.org/files/video-tools/xjadeo_version.txt)
|
|
|
|
fi
|
2013-06-08 07:29:04 -04:00
|
|
|
echo "copying harvid and xjadeo ..."
|
2013-06-13 16:42:37 -04:00
|
|
|
|
2013-06-14 12:12:55 -04:00
|
|
|
rsync -Pa \
|
2020-12-13 15:54:51 -05:00
|
|
|
rsync://ardour.org/video-tools/harvid-${OSX_X42ID}-${HARVID_VERSION}.tgz \
|
|
|
|
"$CACHEDIR/harvid-${OSX_X42ID}-${HARVID_VERSION}.tgz"
|
2013-06-14 12:12:55 -04:00
|
|
|
|
|
|
|
rsync -Pa \
|
2020-12-13 19:54:14 -05:00
|
|
|
rsync://ardour.org/video-tools/jadeo${DMG_ARCH}-${XJADEO_VERSION:1}.dmg \
|
|
|
|
"$CACHEDIR/jadeo${DMG_ARCH}-${XJADEO_VERSION:1}.dmg"
|
2013-06-14 12:12:55 -04:00
|
|
|
|
|
|
|
tar -x -z \
|
|
|
|
-C $PRODUCT_PKG_DIR/$APPROOT \
|
2020-12-13 15:54:51 -05:00
|
|
|
-f "$CACHEDIR/harvid-${OSX_X42ID}-${HARVID_VERSION}.tgz" || exit 1
|
2013-06-14 12:12:55 -04:00
|
|
|
|
2020-12-13 19:54:14 -05:00
|
|
|
JADEO=$(hdiutil attach "$CACHEDIR/jadeo${DMG_ARCH}-${XJADEO_VERSION:1}.dmg" | grep Apple_HFS | grep dev/ | cut -f 3)
|
2013-06-13 16:42:37 -04:00
|
|
|
cp -r "${JADEO}/Jadeo.app" "$PRODUCT_PKG_DIR/"
|
|
|
|
hdiutil detach "${JADEO}"
|
|
|
|
|
2015-07-22 18:04:41 -04:00
|
|
|
XJCONTENT=${PRODUCT_PKG_DIR}/Jadeo.app/Contents
|
|
|
|
HVLIBS=${PRODUCT_PKG_DIR}/$APPROOT/lib/harvid
|
|
|
|
|
|
|
|
for file in ${XJCONTENT}/MacOS/Jadeo-bin ${XJCONTENT}/Frameworks/*.dylib ${HVLIBS}/*.dylib ${PRODUCT_PKG_DIR}/$APPROOT/MacOS/*harvid* ; do
|
2021-03-11 17:09:46 -05:00
|
|
|
lipo -extract_family ${OSX_ARCH} ${file} -output ${file}.thin 2>/dev/null && \
|
2015-07-22 18:04:41 -04:00
|
|
|
mv ${file}.thin ${file}
|
|
|
|
done
|
|
|
|
|
2013-06-13 16:42:37 -04:00
|
|
|
DMGWINBOTTOM=580
|
2013-06-08 07:29:04 -04:00
|
|
|
YPOS=$[ $DMGWINBOTTOM - 300 ]
|
2013-06-13 16:42:37 -04:00
|
|
|
XJADEOPOS="set position of item \"Jadeo.app\" of container window to {310, ${YPOS}}"
|
|
|
|
|
2015-01-16 16:24:04 -05:00
|
|
|
DMGBACKGROUND=${DMGBACKGROUND}xj
|
2013-06-08 07:29:04 -04:00
|
|
|
fi
|
|
|
|
|
2015-07-02 05:20:10 -04:00
|
|
|
################################################################################
|
2015-02-25 18:55:55 -05:00
|
|
|
### Mixbus plugins, etc
|
2017-01-30 10:42:50 -05:00
|
|
|
if true; then
|
|
|
|
echo "Bundling General MIDI Synth LV2"
|
|
|
|
mkdir -p "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2"
|
|
|
|
|
|
|
|
for proj in x42-gmsynth; do
|
2020-12-13 15:54:51 -05:00
|
|
|
X42_VERSION=$(curl -s -S http://${OSX_X42URI}/${proj}.latest.txt)
|
2017-01-30 10:42:50 -05:00
|
|
|
rsync -a -q --partial \
|
2020-12-13 16:15:07 -05:00
|
|
|
rsync://${OSX_X42URI}/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip \
|
2020-12-13 15:54:51 -05:00
|
|
|
"$CACHEDIR/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip"
|
2017-01-30 10:42:50 -05:00
|
|
|
bsdtar -C "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/" -xf \
|
2020-12-13 15:54:51 -05:00
|
|
|
"$CACHEDIR/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip"
|
2017-01-30 10:42:50 -05:00
|
|
|
done
|
2020-06-11 16:25:52 -04:00
|
|
|
fi
|
2017-01-30 10:42:50 -05:00
|
|
|
|
2020-06-11 16:25:52 -04:00
|
|
|
if test x$WITH_COMMERCIAL_X42_LV2 != x ; then
|
|
|
|
echo "Adding commercial x42 plugins"
|
|
|
|
mkdir -p "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2"
|
2017-01-30 10:42:50 -05:00
|
|
|
|
2020-06-11 16:25:52 -04:00
|
|
|
for proj in x42-meters x42-eq x42-whirl; do
|
2020-12-13 15:54:51 -05:00
|
|
|
X42_VERSION=$(curl -s -S http://${OSX_X42URI}/${proj}.latest.txt)
|
2020-06-11 16:25:52 -04:00
|
|
|
rsync -a -q --partial \
|
2020-12-13 16:15:07 -05:00
|
|
|
rsync://${OSX_X42URI}/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip \
|
2020-12-13 15:54:51 -05:00
|
|
|
"$CACHEDIR/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip"
|
2020-06-11 16:25:52 -04:00
|
|
|
bsdtar -C "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/" -xf \
|
2020-12-13 15:54:51 -05:00
|
|
|
"$CACHEDIR/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip"
|
2020-06-11 16:25:52 -04:00
|
|
|
done
|
2017-01-30 10:42:50 -05:00
|
|
|
fi
|
|
|
|
|
2020-06-11 16:25:52 -04:00
|
|
|
if test x$WITH_GRATIS_X42_LV2 != x ; then
|
|
|
|
echo "Adding gratis x42 plugins"
|
2015-02-25 18:55:55 -05:00
|
|
|
mkdir -p "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2"
|
|
|
|
|
2020-06-11 16:25:52 -04:00
|
|
|
for proj in x42-midifilter x42-stereoroute setBfree x42-avldrums x42-limiter x42-tuner; do
|
2020-12-13 15:54:51 -05:00
|
|
|
X42_VERSION=$(curl -s -S http://${OSX_X42URI}/${proj}.latest.txt)
|
2016-06-06 14:19:47 -04:00
|
|
|
rsync -a -q --partial \
|
2020-12-13 15:54:51 -05:00
|
|
|
rsync://${OSX_X42URI}/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip \
|
|
|
|
"$CACHEDIR/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip"
|
2016-06-06 14:19:47 -04:00
|
|
|
bsdtar -C "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/" -xf \
|
2020-12-13 15:54:51 -05:00
|
|
|
"$CACHEDIR/${proj}-lv2-${OSX_X42ID}-${X42_VERSION}.zip"
|
2016-06-06 14:19:47 -04:00
|
|
|
done
|
2020-06-11 16:25:52 -04:00
|
|
|
fi
|
2015-02-25 18:55:55 -05:00
|
|
|
|
2020-06-11 16:25:52 -04:00
|
|
|
if test -d ${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/; then
|
|
|
|
echo "Removing unused achitectures from LV plugins"
|
2015-02-26 15:12:12 -05:00
|
|
|
for file in ${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/*/*.dylib ; do
|
2021-03-11 17:09:46 -05:00
|
|
|
lipo -extract_family ${OSX_ARCH} ${file} -output ${file}.thin 2>/dev/null && \
|
2015-02-25 18:55:55 -05:00
|
|
|
mv ${file}.thin ${file}
|
|
|
|
done
|
2015-07-02 05:20:10 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$MIXBUS"; then
|
2020-06-11 16:25:52 -04:00
|
|
|
echo "Deploying harrison channelstrip for $OSX_BENSID"
|
2015-07-02 05:20:10 -04:00
|
|
|
|
|
|
|
mkdir -p "${PRODUCT_PKG_DIR}/${APPROOT}/lib/ladspa/strip"
|
|
|
|
|
|
|
|
curl -s -S --fail -# \
|
2016-04-07 16:27:03 -04:00
|
|
|
-z "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so" \
|
|
|
|
-o "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so" \
|
2016-09-22 18:47:33 -04:00
|
|
|
"${HARRISONDSPURL}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so"
|
2015-02-25 18:55:55 -05:00
|
|
|
|
2016-04-07 16:27:03 -04:00
|
|
|
cp "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so" \
|
|
|
|
"${PRODUCT_PKG_DIR}/${APPROOT}/lib/ladspa/strip/${HARRISONCHANNELSTRIP}.so"
|
2016-05-23 10:46:08 -04:00
|
|
|
|
|
|
|
echo "deploying harrison vamp plugins for $OSX_BENSID"
|
|
|
|
|
|
|
|
curl -s -S --fail -# \
|
|
|
|
-z "${CACHEDIR}/harrison_vamp.${OSX_BENSID}.dylib" \
|
|
|
|
-o "${CACHEDIR}/harrison_vamp.${OSX_BENSID}.dylib" \
|
2016-09-22 18:47:33 -04:00
|
|
|
"${HARRISONDSPURL}/harrison_vamp.${OSX_BENSID}.dylib"
|
2016-05-23 10:46:08 -04:00
|
|
|
|
|
|
|
cp "${CACHEDIR}/harrison_vamp.${OSX_BENSID}.dylib" \
|
|
|
|
"${PRODUCT_PKG_DIR}/${APPROOT}/lib/harrison_vamp.dylib"
|
2015-02-25 18:55:55 -05:00
|
|
|
fi
|
2016-09-15 07:11:43 -04:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
if test x$DEMO_SESSION_URL != x ; then
|
|
|
|
mkdir -p $Shared/sessions
|
|
|
|
DEMO_SESSIONS=$(curl -s -S --fail $DEMO_SESSION_URL/index.txt)
|
|
|
|
for demo in $DEMO_SESSIONS; do
|
|
|
|
curl -s -S --fail -# -o $Shared/sessions/$demo $DEMO_SESSION_URL/$demo
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2015-02-25 18:55:55 -05:00
|
|
|
################################################################################
|
|
|
|
|
2021-03-15 10:51:57 -04:00
|
|
|
|
|
|
|
|
|
|
|
##### App Signing ##############################################################
|
|
|
|
|
|
|
|
checkForSuccess() {
|
|
|
|
xcrun altool \
|
|
|
|
--notarization-info $1 \
|
|
|
|
-u ${ALTOOL_USERNAME} \
|
|
|
|
--password "@keychain:ALTOOL_PASSWORD" \
|
|
|
|
2>&1 | grep -o "Status: success";
|
|
|
|
}
|
|
|
|
|
|
|
|
if test $(sw_vers -productVersion | cut -d '.' -f 1) -lt 11 -a $(sw_vers -productVersion | cut -d '.' -f 2) -lt 14 -a $(sw_vers -productVersion | cut -d '.' -f 2) -lt 7; then
|
|
|
|
#less than 10.13.6 does not support notariztion
|
|
|
|
HARDENED_OPTIONS=
|
|
|
|
else
|
|
|
|
HARDENED_OPTIONS="--options runtime --entitlements entitlements.plist"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "checking for signing credentials"
|
|
|
|
|
|
|
|
if test -n "${APPLE_DEVELOPER_ID_FOR_APPLICATION}"; then
|
|
|
|
####################
|
|
|
|
## Sign the main APP
|
|
|
|
|
|
|
|
echo "signing the main app"
|
|
|
|
|
|
|
|
# Sign everything from inside level working out.
|
|
|
|
find ${PRODUCT_PKG_DIR}/${APPROOT}/Resources -type f -exec codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" "{}" \;
|
|
|
|
find ${PRODUCT_PKG_DIR}/${APPROOT}/lib -type f -exec codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" "{}" \;
|
|
|
|
|
|
|
|
find ${PRODUCT_PKG_DIR}/${APPROOT}/MacOS -name "${lower_case_appname}${major_version}-*" -exec codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" "{}" \;
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/${APPROOT}/MacOS/ffmpeg_harvid
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/${APPROOT}/MacOS/ffprobe_harvid
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/${APPROOT}/MacOS/harvid
|
|
|
|
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/${APPROOT}/MacOS/${MAIN_EXECUTABLE}
|
|
|
|
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/${APPDIR}
|
|
|
|
|
|
|
|
# Notarize
|
|
|
|
if test -n "${HARDENED_OPTIONS}"; then
|
|
|
|
echo "Notarizing the main app"
|
|
|
|
OK=0
|
|
|
|
|
|
|
|
ZIP_PATH=${PRODUCT_PKG_DIR}/${BUNDLENAME}.zip
|
|
|
|
/usr/bin/ditto -c -k --keepParent ${PRODUCT_PKG_DIR}/${APPDIR} $ZIP_PATH
|
|
|
|
|
|
|
|
notarize_output=$(xcrun altool --notarize-app --primary-bundle-id "${BUNDLE_ID_BASE}.${lower_case_appname}${major_version}.zip" --username ${ALTOOL_USERNAME} --password "@keychain:ALTOOL_PASSWORD" --file $ZIP_PATH 2>&1 | grep -o "RequestUUID = .*")
|
|
|
|
|
|
|
|
if [ $? = 0 ]; then
|
|
|
|
REQUEST_ID=$(echo ${notarize_output} | awk '{print $3}')
|
|
|
|
echo "Main app waiting on RequestUUID=${REQUEST_ID}"
|
|
|
|
|
|
|
|
count=360
|
|
|
|
while [ "$count" != 0 -a "$OK" == 0 ]
|
|
|
|
do
|
|
|
|
echo -n .
|
|
|
|
sleep 60
|
|
|
|
count=$((count - 1))
|
|
|
|
|
|
|
|
if checkForSuccess ${REQUEST_ID}; then
|
|
|
|
OK=1;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$OK" == 1 ]; then
|
|
|
|
echo "Main app notarize success"
|
|
|
|
xcrun stapler staple ${PRODUCT_PKG_DIR}/${APPDIR}
|
|
|
|
else
|
|
|
|
echo "ERROR: Main app notarize not approved after 6 hours"
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
echo "ERROR: Notarize upload failed"
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
rm $ZIP_PATH
|
|
|
|
fi
|
|
|
|
|
|
|
|
#############
|
|
|
|
## Sign Jadeo
|
|
|
|
|
|
|
|
echo "signing the Jadeo app"
|
|
|
|
|
|
|
|
# Sign everything from inside level working out.
|
|
|
|
find ${PRODUCT_PKG_DIR}/Jadeo.app/Contents/Resources -type f -exec codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" "{}" \;
|
|
|
|
find ${PRODUCT_PKG_DIR}/Jadeo.app/Contents/Frameworks -type f -exec codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" "{}" \;
|
|
|
|
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/Jadeo.app/Contents/MacOS/Jadeo-bin
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/Jadeo.app/Contents/MacOS/xjremote
|
|
|
|
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/Jadeo.app/Contents/MacOS/Jadeo
|
|
|
|
|
|
|
|
codesign --verbose --timestamp ${HARDENED_OPTIONS} --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${PRODUCT_PKG_DIR}/Jadeo.app
|
|
|
|
|
|
|
|
# Notarize
|
|
|
|
if test -n "${HARDENED_OPTIONS}"; then
|
|
|
|
echo "notarizing Jadeo app"
|
|
|
|
OK=0
|
|
|
|
|
|
|
|
ZIP_PATH=${PRODUCT_PKG_DIR}/Jadeo.zip
|
|
|
|
/usr/bin/ditto -c -k --keepParent ${PRODUCT_PKG_DIR}/Jadeo.app $ZIP_PATH
|
|
|
|
|
|
|
|
notarize_output=$(xcrun altool --notarize-app --primary-bundle-id "${BUNDLE_ID_BASE}.jadeo.zip" --username ${ALTOOL_USERNAME} --password "@keychain:ALTOOL_PASSWORD" --file $ZIP_PATH 2>&1 | grep -o "RequestUUID = .*")
|
|
|
|
|
|
|
|
if [ $? = 0 ]; then
|
|
|
|
REQUEST_ID=$(echo ${notarize_output} | awk '{print $3}')
|
|
|
|
echo "Jadeo waiting on RequestUUID=${REQUEST_ID}"
|
|
|
|
|
|
|
|
count=360
|
|
|
|
while [ "$count" != 0 -a "$OK" == 0 ]
|
|
|
|
do
|
|
|
|
echo -n .
|
|
|
|
sleep 60
|
|
|
|
count=$((count - 1))
|
|
|
|
|
|
|
|
if checkForSuccess ${REQUEST_ID}; then
|
|
|
|
OK=1;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$OK" == 1 ]; then
|
|
|
|
echo "Jadeo notarize success"
|
|
|
|
xcrun stapler staple ${PRODUCT_PKG_DIR}/Jadeo.app
|
|
|
|
else
|
|
|
|
echo "ERROR: Jadeo notarize not approved after 6 hours"
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
echo "ERROR: Notarize upload failed"
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
rm $ZIP_PATH
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
2015-02-16 12:03:23 -05:00
|
|
|
( cd $PRODUCT_PKG_DIR ; find . ) > file_list.txt
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
echo "Building DMG ..."
|
|
|
|
|
2013-11-05 09:35:03 -05:00
|
|
|
# UC_DMG=$APPNAME-${release_version}-UC.dmg
|
|
|
|
# FINAL_DMG=$APPNAME-${release_version}.dmg
|
2014-11-17 01:49:16 -05:00
|
|
|
|
|
|
|
if [ x$DEBUG = xT ]; then
|
2020-12-13 19:54:14 -05:00
|
|
|
UC_DMG=$APPNAME-$release_version-dbg${DMG_ARCH}.dmg
|
2014-11-17 01:49:16 -05:00
|
|
|
else
|
2020-12-13 19:54:14 -05:00
|
|
|
UC_DMG=$APPNAME-$release_version${DMG_ARCH}.dmg
|
2014-11-17 01:49:16 -05:00
|
|
|
fi
|
2013-11-05 09:35:03 -05:00
|
|
|
VOLNAME=$APPNAME-$release_version
|
2013-02-23 04:13:30 -05:00
|
|
|
|
2014-10-08 13:16:31 -04:00
|
|
|
MNTPATH=`mktemp -d -t ardourimg`
|
2013-02-23 04:13:30 -05:00
|
|
|
TMPDMG=`mktemp -t ardour`
|
|
|
|
ICNSTMP=`mktemp -t ardouricon`
|
2013-05-07 12:21:42 -04:00
|
|
|
EXTRA_SPACE_MB=30
|
2021-05-05 19:21:36 -04:00
|
|
|
DMGMEGABYTES=$[ `du -sk "$PRODUCT_PKG_DIR" | cut -f 1` * 1024 / 1000000 + $EXTRA_SPACE_MB ]
|
2013-05-07 12:21:42 -04:00
|
|
|
|
|
|
|
echo "DMG MB = " $DMGMEGABYTES
|
2013-02-23 04:13:30 -05:00
|
|
|
|
|
|
|
rm -f $UC_DMG "$TMPDMG" "${TMPDMG}.dmg" "$ICNSTMP"
|
|
|
|
rm -rf "$MNTPATH"
|
|
|
|
mkdir -p "$MNTPATH"
|
|
|
|
|
|
|
|
TMPDMG="${TMPDMG}.dmg"
|
|
|
|
|
2015-01-12 12:57:02 -05:00
|
|
|
trap "rm -rf $MNTPATH $TMPDMG ${TMPDMG}.dmg $ICNSTMP" EXIT
|
|
|
|
|
2015-07-24 13:03:08 -04:00
|
|
|
hdiutil create -megabytes $DMGMEGABYTES -fs HFS+ -volname "${VOLNAME}" "$TMPDMG"
|
2013-02-23 04:13:30 -05:00
|
|
|
DiskDevice=$(hdid -nomount "$TMPDMG" | grep Apple_HFS | cut -f 1 -d ' ')
|
2015-02-02 12:46:26 -05:00
|
|
|
mount -t hfs -o nobrowse "${DiskDevice}" "${MNTPATH}"
|
2013-02-23 04:13:30 -05:00
|
|
|
|
2013-06-08 07:29:04 -04:00
|
|
|
cp -r ${PRODUCT_PKG_DIR}/* "${MNTPATH}" || exit
|
2013-02-23 04:13:30 -05:00
|
|
|
mkdir "${MNTPATH}/.background"
|
2021-03-11 17:09:46 -05:00
|
|
|
cp ${DMGBACKGROUND}.png "${MNTPATH}/.background/dmgbg.png"
|
2013-02-23 04:13:30 -05:00
|
|
|
|
|
|
|
echo "setting DMG background ..."
|
|
|
|
|
2020-12-12 16:02:26 -05:00
|
|
|
if test $(sw_vers -productVersion | cut -d '.' -f 1) -lt 11 -a $(sw_vers -productVersion | cut -d '.' -f 2) -lt 9; then
|
2014-10-08 13:16:31 -04:00
|
|
|
# OSX ..10.8.X
|
|
|
|
DISKNAME=${VOLNAME}
|
|
|
|
else
|
|
|
|
# OSX 10.9.X and later
|
|
|
|
DISKNAME=`basename "${MNTPATH}"`
|
|
|
|
fi
|
|
|
|
|
|
|
|
osascript << EOF
|
|
|
|
tell application "Finder"
|
|
|
|
activate
|
|
|
|
tell disk "${DISKNAME}"
|
|
|
|
open
|
2015-07-03 20:47:47 -04:00
|
|
|
delay 2
|
2014-10-08 13:16:31 -04:00
|
|
|
set current view of container window to icon view
|
|
|
|
set toolbar visible of container window to false
|
|
|
|
set statusbar visible of container window to false
|
|
|
|
set the bounds of container window to {400, 200, 800, ${DMGWINBOTTOM}}
|
|
|
|
set theViewOptions to the icon view options of container window
|
|
|
|
set arrangement of theViewOptions to not arranged
|
|
|
|
set icon size of theViewOptions to 64
|
|
|
|
set background picture of theViewOptions to file ".background:dmgbg.png"
|
|
|
|
make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"}
|
|
|
|
set position of item "${APPDIR}" of container window to {90, 100}
|
|
|
|
set position of item "Applications" of container window to {310, 100}
|
|
|
|
${MIXBUSPOS}
|
|
|
|
${HARVIDPOS}
|
|
|
|
${XJADEOPOS}
|
|
|
|
close
|
|
|
|
open
|
|
|
|
update without registering applications
|
2017-04-27 15:19:27 -04:00
|
|
|
delay 3
|
|
|
|
set position of item "${APPDIR}" of container window to {90, 100}
|
|
|
|
set position of item "Applications" of container window to {310, 100}
|
|
|
|
${MIXBUSPOS}
|
|
|
|
${HARVIDPOS}
|
|
|
|
${XJADEOPOS}
|
|
|
|
close
|
|
|
|
open
|
|
|
|
update without registering applications
|
|
|
|
delay 3
|
2014-10-08 13:16:31 -04:00
|
|
|
eject
|
|
|
|
end tell
|
|
|
|
end tell
|
|
|
|
EOF
|
2013-02-23 04:13:30 -05:00
|
|
|
|
|
|
|
chmod -Rf go-w "${MNTPATH}"
|
|
|
|
sync
|
|
|
|
|
2015-01-12 12:57:02 -05:00
|
|
|
set -e
|
2013-02-23 04:13:30 -05:00
|
|
|
echo "compressing Image ..."
|
|
|
|
|
2015-03-09 20:41:52 -04:00
|
|
|
# Umount the image ('eject' above may already have done that)
|
|
|
|
umount "${DiskDevice}" || true
|
|
|
|
hdiutil eject "${DiskDevice}" || true
|
2013-02-23 04:13:30 -05:00
|
|
|
# Create a read-only version, use zlib compression
|
|
|
|
hdiutil convert -format UDZO "${TMPDMG}" -imagekey zlib-level=9 -o "${UC_DMG}"
|
|
|
|
|
2015-07-23 12:27:07 -04:00
|
|
|
if test $(sw_vers -productVersion | cut -d '.' -f 2) -gt 5; then
|
2013-02-23 04:13:30 -05:00
|
|
|
echo "setting file icon ..."
|
|
|
|
|
|
|
|
cp ${PRODUCT_PKG_DIR}/$Resources/appIcon.icns ${ICNSTMP}.icns
|
2020-12-01 19:56:04 -05:00
|
|
|
if test $(sw_vers -productVersion | cut -d '.' -f 2) -lt 13; then
|
|
|
|
sips -i ${ICNSTMP}.icns
|
|
|
|
DeRez -only icns ${ICNSTMP}.icns > ${ICNSTMP}.rsrc
|
|
|
|
else
|
|
|
|
ICNSBASE=`basename ${ICNSTMP}.icns`
|
|
|
|
echo "read 'icns' (-16455) \"${ICNSBASE}\";" > ${ICNSTMP}.rsrc
|
|
|
|
fi
|
|
|
|
|
2014-10-07 19:00:51 -04:00
|
|
|
Rez -append ${ICNSTMP}.rsrc -o "$UC_DMG"
|
|
|
|
SetFile -a C "$UC_DMG"
|
2013-02-23 04:13:30 -05:00
|
|
|
|
|
|
|
rm ${ICNSTMP}.icns ${ICNSTMP}.rsrc
|
2015-07-23 12:27:07 -04:00
|
|
|
fi
|
|
|
|
|
2015-03-23 07:59:24 -04:00
|
|
|
rm -rf ${PRODUCT_PKG_DIR}
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2013-02-23 04:13:30 -05:00
|
|
|
echo
|
|
|
|
echo "packaging suceeded."
|
|
|
|
ls -l "$UC_DMG"
|
2011-11-04 17:15:34 -04:00
|
|
|
|
2021-03-15 10:51:57 -04:00
|
|
|
echo "dmg: checking for signing credentials"
|
|
|
|
|
|
|
|
if test -n "${APPLE_DEVELOPER_ID_FOR_APPLICATION}"; then
|
|
|
|
echo "dmg: signing"
|
|
|
|
|
|
|
|
codesign --verbose --timestamp --force --sign "${APPLE_DEVELOPER_ID_FOR_APPLICATION}" ${UC_DMG}
|
|
|
|
|
|
|
|
if test -n "${HARDENED_OPTIONS}"; then
|
|
|
|
echo "dmg: notarizing"
|
|
|
|
OK=0
|
|
|
|
|
|
|
|
notarize_output=$(xcrun altool --notarize-app --primary-bundle-id "${BUNDLE_ID_BASE}.${lower_case_appname}${major_version}.dmg" --username ${ALTOOL_USERNAME} --password "@keychain:ALTOOL_PASSWORD" --file ${UC_DMG} 2>&1 | grep -o "RequestUUID = .*")
|
|
|
|
|
|
|
|
if [ $? = 0 ]; then
|
|
|
|
REQUEST_ID=$(echo ${notarize_output} | awk '{print $3}')
|
|
|
|
echo "dmg: waiting on RequestUUID=${REQUEST_ID}"
|
|
|
|
|
|
|
|
count=360
|
|
|
|
while [ "$count" != 0 -a "$OK" == 0 ]
|
|
|
|
do
|
|
|
|
echo -n .
|
|
|
|
sleep 60
|
|
|
|
count=$((count - 1))
|
|
|
|
|
|
|
|
if checkForSuccess ${REQUEST_ID}; then
|
|
|
|
OK=1;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$OK" == 1 ]; then
|
|
|
|
echo "dmg: notarize success"
|
|
|
|
xcrun stapler staple ${UC_DMG}
|
|
|
|
else
|
|
|
|
echo "ERROR: dmg notarize not approved after 6 hours"
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
echo "ERROR: Notarize upload failed"
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2011-11-04 17:15:34 -04:00
|
|
|
echo "Done."
|
2013-02-23 04:13:30 -05:00
|
|
|
exit
|