2010-11-03 22:39:45 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# script for pulling together a Linux app bundle.
|
2011-02-25 17:05:15 -05:00
|
|
|
#
|
|
|
|
# This will create a bundle for a single architecture.
|
|
|
|
# Execute this scirpt on both x86 and x86_64 and then use
|
|
|
|
# package to merge the 2 bundles into a final package with the
|
2012-05-24 11:58:58 -04:00
|
|
|
# installer. See "noderun" for a complete build script.
|
|
|
|
|
|
|
|
# where the GTK stack is installed
|
|
|
|
GTKSTACK_ROOT=$HOME/gtk/inst
|
|
|
|
# where the Ardour dependencies are installed
|
|
|
|
ARDOURSTACK_ROOT=$HOME/a3/inst
|
|
|
|
# the waf build tree to use when copying built/generated files
|
|
|
|
BUILD_ROOT=../../build
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
MIXBUS=
|
|
|
|
WITH_LADSPA=0
|
2011-04-01 14:33:40 -04:00
|
|
|
STRIP=all
|
2010-11-03 22:39:45 -04:00
|
|
|
PRINT_SYSDEPS=
|
|
|
|
WITH_NLS=
|
|
|
|
EXTERNAL_JACK=
|
2011-02-25 17:05:15 -05:00
|
|
|
VENDOR=Ardour ;
|
|
|
|
BUILDTYPE=""
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
if [ $# -eq 0 ] ; then
|
|
|
|
echo ""
|
|
|
|
echo "ERROR - Please specify build type"
|
|
|
|
echo " --public"
|
2011-01-31 10:37:22 -05:00
|
|
|
echo " --mixbus"
|
2011-01-31 09:48:34 -05:00
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
while [ $# -gt 0 ] ; do
|
2011-01-31 09:48:34 -05:00
|
|
|
echo "arg = $1"
|
|
|
|
case $1 in
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# top level build targets
|
|
|
|
#
|
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
--mixbus)
|
|
|
|
MIXBUS=1;
|
|
|
|
WITH_NLS=1 ;
|
|
|
|
WITH_LADSPA=;
|
2011-04-01 14:33:40 -04:00
|
|
|
STRIP=all
|
2011-01-31 09:48:34 -05:00
|
|
|
APPNAME=Mixbus ;
|
2011-02-07 16:19:27 -05:00
|
|
|
VENDOR=Harrison ;
|
2011-01-31 09:48:34 -05:00
|
|
|
shift ;;
|
|
|
|
--public)
|
|
|
|
WITH_NLS=1 ;
|
|
|
|
WITH_LADSPA=;
|
2011-04-01 14:33:40 -04:00
|
|
|
STRIP=all ;
|
2011-01-31 09:48:34 -05:00
|
|
|
APPNAME=Ardour ;
|
|
|
|
shift ;;
|
|
|
|
--allinone)
|
|
|
|
WITH_NLS= ;
|
|
|
|
WITH_LADSPA=1;
|
2011-04-01 14:33:40 -04:00
|
|
|
STRIP=all;
|
2011-01-31 09:48:34 -05:00
|
|
|
shift ;;
|
2011-02-07 16:19:27 -05:00
|
|
|
--test) WITH_LADSPA=; STRIP= ; shift ;;
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# specific build flags
|
|
|
|
#
|
|
|
|
|
|
|
|
--nojack) INTERNAL_JACK= ; shift ;;
|
|
|
|
--noladspa) WITH_LADSPA= ; shift ;;
|
2011-04-01 14:33:40 -04:00
|
|
|
--strip) STRIP=$2 ; shift ; shift ;;
|
2010-11-03 22:39:45 -04:00
|
|
|
--sysdeps) PRINT_SYSDEPS=1; shift ;;
|
|
|
|
--nls) WITH_NLS=1 ; shift ;;
|
2011-01-31 09:48:34 -05:00
|
|
|
|
|
|
|
*)
|
|
|
|
#catch all for unknown arguments
|
|
|
|
echo ""
|
|
|
|
echo "!!! ERROR !!! - Unknown argument $1"
|
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2010-11-03 22:39:45 -04:00
|
|
|
done
|
|
|
|
|
2011-04-01 14:33:40 -04:00
|
|
|
if test x$STRIP != xall -a x$STRIP != xnone -a x$STRIP != xsome ; then
|
|
|
|
echo "Unknown strip option \"$STRIP\""
|
|
|
|
echo "Legal values are: all, none, some"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-05-24 12:44:39 -04:00
|
|
|
# Error out whenever possible
|
|
|
|
set -e
|
|
|
|
|
2011-01-31 10:37:22 -05:00
|
|
|
release_version=`grep -m 1 '^VERSION' ../../wscript | awk '{print $3}' | sed "s/'//g"`
|
2012-05-04 09:44:27 -04:00
|
|
|
svn_version=`grep -m 1 'svn_revision =' ../../libs/ardour/svn_revision.cc | cut -d"'" -f 2`
|
2010-11-03 22:39:45 -04:00
|
|
|
echo "Version is $release_version / $svn_version"
|
|
|
|
info_string="$release_version/$svn_version built on `hostname` by `whoami` on `date`"
|
|
|
|
echo "Info string is $info_string"
|
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
# Figure out our CPU type
|
|
|
|
case `uname -m` in
|
|
|
|
i[3456789]86|x86|i86pc)
|
|
|
|
echo "Architecture is x86"
|
|
|
|
ARCH='x86'
|
|
|
|
ARCH_BITS='32-bit'
|
|
|
|
;;
|
|
|
|
x86_64|amd64|AMD64)
|
|
|
|
echo "Architecture is x86_64"
|
|
|
|
ARCH='x86_64'
|
|
|
|
ARCH_BITS='64-bit'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo ""
|
|
|
|
echo "ERROR - Unknown architecture `uname -m`"
|
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2011-02-25 17:05:15 -05:00
|
|
|
# Figure out the Build Type
|
|
|
|
if grep -q "DEBUG = True" ../../build/c4che/default.cache.py; then
|
|
|
|
DEBUG="T"
|
|
|
|
else
|
|
|
|
DEBUG="F"
|
|
|
|
fi
|
|
|
|
|
2011-04-28 15:28:22 -04:00
|
|
|
if [ x$DEBUG = xT ]; then
|
2011-04-01 14:33:40 -04:00
|
|
|
BUILDTYPE="dbg"
|
|
|
|
if [ x$STRIP = xall ] ; then
|
|
|
|
echo "A debug build with --strip all makes no sense - STRIP reset to \"some\""
|
|
|
|
STRIP=some
|
|
|
|
fi
|
2011-02-25 17:05:15 -05:00
|
|
|
fi
|
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
# setup directory structure
|
|
|
|
|
2011-02-25 17:05:15 -05:00
|
|
|
if [ -z "${BUILDTYPE}" ]; then
|
|
|
|
APPDIR=${APPNAME}_${ARCH}-${release_version}_${svn_version}
|
|
|
|
APP_VER_NAME=${APPNAME}-${release_version}_${svn_version}
|
|
|
|
else
|
|
|
|
APPDIR=${APPNAME}_${ARCH}-${release_version}_${svn_version}-${BUILDTYPE}
|
|
|
|
APP_VER_NAME=${APPNAME}-${release_version}_${svn_version}-${BUILDTYPE}
|
|
|
|
fi
|
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
APPBIN=$APPDIR/bin
|
|
|
|
APPLIB=$APPDIR/lib
|
|
|
|
Libraries=$APPLIB
|
|
|
|
Etc=$APPDIR/etc
|
|
|
|
Shared=$APPDIR/share
|
2012-05-20 10:23:49 -04:00
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
Plugins=$APPLIB/plugins
|
|
|
|
Surfaces=$APPLIB/surfaces
|
|
|
|
Panners=$APPLIB/panners
|
2012-05-20 10:23:49 -04:00
|
|
|
|
|
|
|
Modules=$Libraries/modules
|
|
|
|
Loaders=$Libraries/loaders
|
|
|
|
|
|
|
|
Templates=$Shared/templates
|
2011-04-02 10:17:44 -04:00
|
|
|
ExportFormats=$Shared/export
|
2010-11-03 22:39:45 -04:00
|
|
|
Locale=$Shared/locale
|
2011-03-25 17:21:23 -04:00
|
|
|
MidiMaps=$Shared/midi_maps
|
2012-05-20 10:06:21 -04:00
|
|
|
PatchFiles=$Shared/patchfiles
|
2012-05-04 10:35:39 -04:00
|
|
|
MackieControl=$Shared/mcp
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
if [ x$PRINT_SYSDEPS != x ] ; then
|
|
|
|
#
|
|
|
|
# print system dependencies
|
|
|
|
#
|
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
for file in $APPBIN/* $Libraries/* $Modules/* $Plugins/*.so ; do
|
|
|
|
if ! file $file | grep -qs Mach-O ; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
otool -L $file | awk '{print $1}' | egrep -v "(^@executable_path|^Ardour[0-9][.0-9]*.app)"
|
|
|
|
done | sort | uniq
|
|
|
|
exit 0
|
2010-11-03 22:39:45 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Removing old $APPDIR tree ..."
|
2011-01-31 09:48:34 -05:00
|
|
|
rm -rf $APPDIR/
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
echo "Building new app directory structure ..."
|
|
|
|
|
|
|
|
# only bother to make the longest paths
|
|
|
|
|
|
|
|
mkdir -p $APPDIR
|
|
|
|
mkdir -p $APPBIN
|
|
|
|
mkdir -p $APPLIB
|
|
|
|
mkdir -p $Etc
|
|
|
|
mkdir -p $Plugins
|
|
|
|
mkdir -p $Modules
|
|
|
|
mkdir -p $Loaders
|
|
|
|
mkdir -p $Shared
|
|
|
|
mkdir -p $Locale
|
|
|
|
mkdir -p $Surfaces
|
2011-03-25 17:21:23 -04:00
|
|
|
mkdir -p $MidiMaps
|
2012-05-20 10:06:21 -04:00
|
|
|
mkdir -p $PatchFiles
|
2012-05-04 10:35:39 -04:00
|
|
|
mkdir -p $MackieControl
|
2011-04-02 10:17:44 -04:00
|
|
|
mkdir -p $ExportFormats
|
2010-11-03 22:39:45 -04:00
|
|
|
mkdir -p $Panners
|
2012-05-20 10:27:29 -04:00
|
|
|
mkdir -p $Templates
|
2010-11-03 22:39:45 -04:00
|
|
|
mkdir -p $Shared/templates
|
2011-02-25 17:05:15 -05:00
|
|
|
mkdir -p $Shared/doc
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
# maybe set variables
|
|
|
|
ENVIRONMENT=environment
|
|
|
|
rm -f $ENVIRONMENT
|
|
|
|
touch $ENVIRONMENT
|
|
|
|
|
2011-01-31 10:37:22 -05:00
|
|
|
if test x$MIXBUS != x ; then
|
2011-01-31 09:48:34 -05:00
|
|
|
echo export ARDOUR_MIXBUS=true >> $ENVIRONMENT
|
|
|
|
#
|
|
|
|
# current default for MIXBUS version is US keyboard layout without a keypad
|
|
|
|
#
|
|
|
|
echo export ARDOUR_KEYBOARD_LAYOUT=us-nokeypad >> $ENVIRONMENT
|
2011-02-01 12:40:39 -05:00
|
|
|
echo export ARDOUR_UI_CONF=ardour3_ui.conf >> $ENVIRONMENT
|
|
|
|
echo export ARDOUR3_UI_RC=ardour3_ui_dark.rc >> $ENVIRONMENT
|
2010-11-03 22:39:45 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# if we're not going to bundle JACK, make sure we can find
|
|
|
|
# jack in the places where it might be
|
|
|
|
#
|
|
|
|
|
|
|
|
echo export 'PATH=/usr/local/bin:/opt/bin:$PATH' >> $ENVIRONMENT
|
|
|
|
|
|
|
|
# create startup helper script
|
|
|
|
|
2011-02-01 12:40:39 -05:00
|
|
|
sed -e "/^%ENV%/r $ENVIRONMENT" -e '/^%ENV%/d' -e 's/%VER%/'"${release_version}"'/' < ardour.sh.in > $APPBIN/ardour3
|
|
|
|
rm $ENVIRONMENT && chmod 775 $APPBIN/ardour3
|
2012-05-24 11:58:58 -04:00
|
|
|
# the 3.0 here is not the same as "release-version" because the latter may include "-betaN" etc.
|
2011-02-01 13:07:48 -05:00
|
|
|
MAIN_EXECUTABLE=ardour-3.0
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
echo "Copying ardour executable ...."
|
2011-02-01 12:40:39 -05:00
|
|
|
cp $BUILD_ROOT/gtk2_ardour/$MAIN_EXECUTABLE $APPBIN
|
2011-04-01 14:33:40 -04:00
|
|
|
if test x$STRIP = xall ; then
|
2011-01-31 09:48:34 -05:00
|
|
|
strip $APPBIN/$MAIN_EXECUTABLE
|
2010-11-03 22:39:45 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# copy locale files
|
2011-02-02 23:51:25 -05:00
|
|
|
# note that at present(feb 2011), the .mo files end up in the source tree which is
|
|
|
|
# not really as it should be.
|
2010-11-03 22:39:45 -04:00
|
|
|
if test x$WITH_NLS != x ; then
|
2011-01-31 09:48:34 -05:00
|
|
|
echo "NLS support ..."
|
|
|
|
echo "I hope you remembered to run scons msgupdate!"
|
|
|
|
LINGUAS=
|
|
|
|
|
2011-06-13 20:16:05 -04:00
|
|
|
for dl in gtk2_ardour libs/ardour libs/gtkmm2ext ; do
|
|
|
|
files=`find ../../$dl -name "*.mo"`
|
2011-01-31 09:48:34 -05:00
|
|
|
|
2011-06-13 20:16:05 -04:00
|
|
|
if [ -z "$files" ]; then
|
2011-01-31 09:48:34 -05:00
|
|
|
echo ""
|
2011-06-13 20:16:05 -04:00
|
|
|
echo "!!!! WARNING !!!! - Did not find any .mo files in ../../$dl"
|
2011-01-31 09:48:34 -05:00
|
|
|
echo ""
|
2011-06-13 20:16:05 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
for file in $files
|
|
|
|
do
|
2011-01-31 09:48:34 -05:00
|
|
|
echo $file
|
|
|
|
lang=`basename $file | sed 's/\.mo//'`
|
|
|
|
mkdir -p $Locale/$lang/LC_MESSAGES
|
2011-06-13 20:21:41 -04:00
|
|
|
cp $file $Locale/$lang/LC_MESSAGES/`basename $dl`
|
2011-06-14 15:18:28 -04:00
|
|
|
if echo $LINGUAS | grep $lang >/dev/null 2>&1 ; then
|
2011-06-13 20:16:05 -04:00
|
|
|
:
|
|
|
|
else
|
|
|
|
LINGUAS="$LINGUAS $lang"
|
|
|
|
fi
|
|
|
|
done
|
2011-01-31 09:48:34 -05:00
|
|
|
done
|
|
|
|
|
|
|
|
GTK_MESSAGES="atk10.mo gdk-pixbuf.mo gtk20-properties.mo gtk20.mo atk10.mo glib20.mo"
|
|
|
|
LOCALEROOT=/usr/share/locale
|
|
|
|
|
|
|
|
for l in $LINGUAS ; do
|
|
|
|
echo "Copying GTK i18n files for $l..."
|
|
|
|
for MO in $GTK_MESSAGES ; do
|
|
|
|
if [ -f $LOCALEROOT/$l/LC_MESSAGES/$MO ] ; then
|
|
|
|
cp $LOCALEROOT/$l/LC_MESSAGES/$MO $Locale/$l/LC_MESSAGES
|
|
|
|
else
|
|
|
|
# try with just the language spec
|
|
|
|
just_lang=`echo $l | sed 's/_[A-Z][A-Z]$//'`
|
|
|
|
if [ -f $LOCALEROOT/$just_lang/LC_MESSAGES/$MO ] ; then
|
|
|
|
cp $LOCALEROOT/$just_lang/LC_MESSAGES/$MO $Locale/$just_lang/LC_MESSAGES
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
else
|
|
|
|
echo "Skipping NLS support"
|
|
|
|
fi
|
|
|
|
|
2012-05-24 11:58:58 -04:00
|
|
|
#
|
|
|
|
# Copy stuff that may be dynamically loaded
|
|
|
|
#
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2012-05-24 11:58:58 -04:00
|
|
|
cp -R $GTKSTACK_ROOT/etc/* $Etc
|
2010-11-03 22:39:45 -04:00
|
|
|
echo "Copying all Pango modules ..."
|
2012-05-24 11:58:58 -04:00
|
|
|
cp -R $GTKSTACK_ROOT/lib/pango/1.6.0/modules/*.so $Modules
|
2010-11-03 22:39:45 -04:00
|
|
|
echo "Copying all GDK Pixbuf loaders ..."
|
2012-05-24 11:58:58 -04:00
|
|
|
cp -R $GTKSTACK_ROOT/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so $Loaders
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2012-05-24 12:59:58 -04:00
|
|
|
# Generate a pango module file using the actual Pango that we're going to bundle
|
|
|
|
|
|
|
|
cat > pangorc <<EOF
|
|
|
|
[Pango]
|
|
|
|
ModulesPath=$GTKSTACK_ROOT/lib/pango/1.6.0/modules
|
|
|
|
EOF
|
2012-05-24 13:12:09 -04:00
|
|
|
env PANGO_RC_FILE=pangorc $GTKSTACK_ROOT/bin/pango-querymodules | sed "s?$GTKSTACK_ROOT/lib/pango/1.6.0/?@ROOTDIR@/?" > $Etc/pango.modules.in
|
2012-05-24 12:59:58 -04:00
|
|
|
rm pangorc
|
|
|
|
|
|
|
|
# Ditto for gdk-pixbuf loaders
|
2012-05-24 12:19:41 -04:00
|
|
|
gdk-pixbuf-query-loaders | sed "s?$GTKSTACK_ROOT/lib/gdk-pixbuf-2.0/2.10.0/?@ROOTDIR@/?" > $Etc/gdk-pixbuf.loaders.in
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2012-05-24 12:27:50 -04:00
|
|
|
# We rely on clearlooks, so include a version from our own build tree
|
2010-11-03 22:39:45 -04:00
|
|
|
# this one is special - we will set GTK_PATH to $Libraries/clearlooks
|
2011-01-31 09:48:34 -05:00
|
|
|
|
2011-02-02 12:13:40 -05:00
|
|
|
echo "Copying clearlooks ..."
|
2012-05-24 12:44:39 -04:00
|
|
|
cp $BUILD_ROOT/libs/clearlooks-newer/libclearlooks.so $Libraries
|
2011-02-02 12:13:40 -05:00
|
|
|
mkdir -p $Libraries/clearlooks/engines
|
2012-05-24 12:34:46 -04:00
|
|
|
(cd $Libraries/clearlooks/engines && ln -s ../../libclearlooks.so . )
|
2011-01-31 09:48:34 -05:00
|
|
|
|
|
|
|
# LADSPA
|
|
|
|
if test x$WITH_LADSPA != x ; then
|
2011-01-31 10:37:22 -05:00
|
|
|
if test x$MIXBUS != x ; then
|
2011-01-31 09:48:34 -05:00
|
|
|
plugdir=mixbus_ladspa
|
|
|
|
else
|
|
|
|
plugdir=ladspa
|
|
|
|
fi
|
|
|
|
echo "Copying `ls $plugdir | wc -l` plugins ..."
|
|
|
|
if [ -d $plugdir ] ; then
|
|
|
|
cp -r $plugdir/* $Plugins
|
|
|
|
fi
|
|
|
|
fi
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2011-02-01 17:03:33 -05:00
|
|
|
# Control Surfaces
|
2012-05-24 18:01:47 -04:00
|
|
|
cp $BUILD_ROOT/libs/surfaces/*/libardour_*.so* $Surfaces
|
|
|
|
cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp.so* $Libraries
|
2011-02-01 17:03:33 -05:00
|
|
|
|
2011-03-25 17:21:23 -04:00
|
|
|
# MidiMaps
|
2011-04-02 10:17:44 -04:00
|
|
|
# got to be careful with names here
|
2011-11-15 08:05:02 -05:00
|
|
|
for x in $BUILD_ROOT/../midi_maps/*.map ; do
|
2011-04-02 10:17:44 -04:00
|
|
|
cp "$x" $MidiMaps
|
|
|
|
done
|
|
|
|
|
2012-05-20 10:06:21 -04:00
|
|
|
# MIDNAM Patch Files
|
|
|
|
# got to be careful with names here
|
|
|
|
for x in $BUILD_ROOT/../patchfiles/*.midnam ; do
|
|
|
|
cp "$x" $PatchFiles
|
|
|
|
done
|
|
|
|
|
2012-05-04 10:35:39 -04:00
|
|
|
# MackieControl data
|
|
|
|
# got to be careful with names here
|
|
|
|
for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
|
|
|
|
cp "$x" $MackieControl
|
|
|
|
done
|
|
|
|
|
2012-05-20 10:35:07 -04:00
|
|
|
# Templates
|
2012-05-20 11:20:27 -04:00
|
|
|
for f in $BUILD_ROOT/../templates/* ; do
|
2012-05-20 10:35:07 -04:00
|
|
|
if [ -d "$f" ] ; then
|
|
|
|
echo Template: $f ; cp -r "$f" $Templates ;
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-04-02 10:17:44 -04:00
|
|
|
# ExportFormats
|
|
|
|
# got to be careful with names here
|
2011-11-12 18:08:24 -05:00
|
|
|
for x in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do
|
2011-04-02 10:17:44 -04:00
|
|
|
cp "$x" $ExportFormats
|
|
|
|
done
|
2011-03-25 17:21:23 -04:00
|
|
|
|
2011-02-01 17:03:33 -05:00
|
|
|
# Panners
|
|
|
|
cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
# VAMP plugins that we use
|
2011-02-01 12:49:10 -05:00
|
|
|
cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.so* $Libraries
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2012-05-24 00:11:25 -04:00
|
|
|
# Suil modules
|
2012-05-24 11:58:58 -04:00
|
|
|
cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Libraries
|
2012-05-23 21:43:58 -04:00
|
|
|
|
2011-02-01 12:49:10 -05:00
|
|
|
OURLIBDIR=$BUILD_ROOT/libs
|
2011-03-21 11:51:08 -04:00
|
|
|
OURLIBS=$OURLIBDIR/vamp-sdk:$OURLIBDIR/surfaces/control_protocol:$OURLIBDIR/ardour:$OURLIBDIR/midi++2:$OURLIBDIR/pbd:$OURLIBDIR/rubberband:$OURLIBDIR/soundtouch:$OURLIBDIR/gtkmm2ext:$OURLIBDIR/sigc++2:$OURLIBDIR/glibmm2:$OURLIBDIR/gtkmm2/atk:$OURLIBDIR/gtkmm2/pango:$OURLIBDIR/gtkmm2/gdk:$OURLIBDIR/gtkmm2/gtk:$OURLIBDIR/libgnomecanvasmm:$OURLIBDIR/libsndfile:$OURLIBDIR/evoral:$OURLIBDIR/evoral/src/libsmf:$OURLIBDIR/audiographer:$OURLIBDIR/timecode:$OURLIBDIR/taglib:$OURLIBDIR/qm-dsp
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
echo $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
|
|
|
|
|
|
|
checkedIdx=0
|
2011-04-01 14:52:59 -04:00
|
|
|
deplibs=
|
2011-01-31 09:48:34 -05:00
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
while [ true ] ; do
|
2011-01-31 09:48:34 -05:00
|
|
|
missing=false
|
|
|
|
filelist=`find $APPLIB/ -type f`
|
|
|
|
filelist="$APPBIN/$MAIN_EXECUTABLE $filelist"
|
|
|
|
|
|
|
|
for file in $filelist ; do
|
|
|
|
if ! file $file | grep -qs ELF ; then
|
|
|
|
continue
|
2010-11-03 22:39:45 -04:00
|
|
|
fi
|
2011-01-31 09:48:34 -05:00
|
|
|
|
|
|
|
# speed this up a bit by not checking things multiple times.
|
|
|
|
for i in "${depCheckedList[@]}"; do
|
|
|
|
if [ $i == $file ]; then
|
|
|
|
continue 2
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
depCheckedList[$checkIdx]=$file
|
2011-02-01 13:13:21 -05:00
|
|
|
checkIdx=$(($checkIdx + 1))
|
2011-01-31 09:48:34 -05:00
|
|
|
|
|
|
|
# do not include libjack
|
|
|
|
deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | awk '{print $3}'`
|
|
|
|
|
|
|
|
echo -n "."
|
|
|
|
for dep in $deps ; do
|
|
|
|
if test "not" = ${dep}; then
|
|
|
|
echo ""
|
|
|
|
echo "!!! ERROR !!! - Missing dependant library for $file."
|
2012-06-01 10:05:49 -04:00
|
|
|
echo "Searched: " $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
2011-01-31 09:48:34 -05:00
|
|
|
echo ""
|
|
|
|
(LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file)
|
|
|
|
echo ""
|
|
|
|
echo "!!! ERROR !!! - See Above"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# don't use anything mapped at a specific address
|
|
|
|
if echo $dep | grep -qs '0x' ; then continue; fi
|
|
|
|
# don't include /lib
|
|
|
|
if echo $dep | grep -qs "^/lib/" ; then continue; fi
|
|
|
|
# don't include jack
|
|
|
|
if echo $dep | grep -qs libjack ; then continue; fi
|
2012-05-23 09:35:22 -04:00
|
|
|
# don't include ALSA
|
|
|
|
if echo $dep | grep -qs libasound ; then continue; fi
|
2011-01-31 09:48:34 -05:00
|
|
|
# don't include any X Window libraries
|
2012-05-23 09:35:22 -04:00
|
|
|
if echo $dep | grep -qs libX\. ; then continue; fi
|
2012-05-23 09:51:48 -04:00
|
|
|
if echo $dep | grep -qs libxcb ; then continue; fi
|
2012-05-23 10:06:43 -04:00
|
|
|
if echo $dep | grep -qs libICE\. ; then continue; fi
|
2012-05-23 09:35:22 -04:00
|
|
|
if echo $dep | grep -qs libSM\. ; then continue; fi
|
2011-01-31 09:48:34 -05:00
|
|
|
# don't include libc
|
|
|
|
if echo $dep | grep -qs 'libc\.' ; then continue; fi
|
|
|
|
# don't include libstdc++
|
|
|
|
if echo $dep | grep -qs libstdc++ ; then continue; fi
|
|
|
|
|
|
|
|
base=`basename $dep`
|
|
|
|
if ! test -f $Libraries/$base; then
|
|
|
|
parent=$(basename ${file})
|
|
|
|
if echo $dep | grep -sq '^libs' ; then
|
2011-02-01 12:49:10 -05:00
|
|
|
echo "Copying dependant lib $BUILD_ROOT/$dep (required by ${parent})"
|
|
|
|
cp $BUILD_ROOT/$dep $Libraries
|
2011-01-31 09:48:34 -05:00
|
|
|
else
|
|
|
|
echo "Copying dependant lib $dep (required by ${parent})"
|
|
|
|
cp $dep $Libraries
|
|
|
|
fi
|
2012-06-01 09:27:38 -04:00
|
|
|
#
|
|
|
|
# reset RPATH so that the runtime linker never looks
|
|
|
|
# in places we don't want it to
|
|
|
|
#
|
|
|
|
patchelf --set-rpath $Libraries $Libraries/`basename $dep`
|
2011-04-01 15:34:31 -04:00
|
|
|
if echo $dep | grep -sq '^/' ; then
|
|
|
|
# absolute path, candidate for stripping
|
|
|
|
deplibs="$deplibs $base"
|
|
|
|
fi
|
2011-01-31 09:48:34 -05:00
|
|
|
missing=true
|
|
|
|
fi
|
|
|
|
done
|
2010-11-03 22:39:45 -04:00
|
|
|
done
|
2011-01-31 09:48:34 -05:00
|
|
|
if test x$missing = xfalse ; then
|
|
|
|
# everything has been found
|
|
|
|
break
|
|
|
|
fi
|
2010-11-03 22:39:45 -04:00
|
|
|
done
|
|
|
|
echo
|
|
|
|
|
|
|
|
# strip libraries
|
2011-04-01 14:33:40 -04:00
|
|
|
if test x$STRIP = xall ; then
|
|
|
|
echo Stripping all libraries
|
2012-05-04 09:51:32 -04:00
|
|
|
# Must be writable so that we can strip
|
|
|
|
find $APPLIB/ -name "*.so*" | xargs chmod u+w
|
|
|
|
# and strip ...
|
2011-02-03 14:20:53 -05:00
|
|
|
find $APPLIB/ -name "*.so*" | xargs strip
|
2011-04-01 14:56:16 -04:00
|
|
|
elif test x$STRIP = xsome ; then
|
2011-04-01 14:33:40 -04:00
|
|
|
echo Stripping dependent libraries
|
|
|
|
for l in $deplibs ; do
|
2012-05-04 09:51:32 -04:00
|
|
|
chmod u+w $APPLIB/$l
|
2011-04-01 14:33:40 -04:00
|
|
|
strip $APPLIB/$l
|
|
|
|
done
|
2011-02-03 14:20:53 -05:00
|
|
|
fi
|
2011-02-03 14:25:47 -05:00
|
|
|
find $APPLIB/ -name "*.so*" | xargs chmod a+rx
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
echo "Copying other stuff to $APPDIR ..."
|
|
|
|
|
2011-01-31 10:37:22 -05:00
|
|
|
# these are all generated by waf
|
|
|
|
#cp $BUILD_ROOT/gtk2_ardour/ergonomic-us.bindings $Etc
|
|
|
|
cp $BUILD_ROOT/gtk2_ardour/mnemonic-us.bindings $Etc
|
|
|
|
cp $BUILD_ROOT/gtk2_ardour/ardour.menus $Etc
|
|
|
|
cp $BUILD_ROOT/ardour_system.rc $Etc/ardour_system.rc
|
2011-06-11 15:39:05 -04:00
|
|
|
cp $BUILD_ROOT/gtk2_ardour/ardour3*.rc $Etc
|
2011-01-31 10:37:22 -05:00
|
|
|
|
|
|
|
# these are copied straight from the source tree
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2011-11-15 19:13:26 -05:00
|
|
|
cp ../../gtk2_ardour/ardour3_ui_default.conf $Etc/ardour3_ui_default.conf
|
2011-01-31 10:37:22 -05:00
|
|
|
cp ../../gtk2_ardour/ardour3_ui_default.conf $Etc/ardour3_ui.conf
|
|
|
|
cp ../../instant.xml $Etc/instant.xml
|
2011-11-15 17:37:36 -05:00
|
|
|
cp ../../gtk2_ardour/step_editing.bindings $Etc
|
|
|
|
cp ../../gtk2_ardour/mixer.bindings $Etc
|
2012-05-20 09:40:30 -04:00
|
|
|
cp -r ../../gtk2_ardour/icons $Shared
|
|
|
|
cp -r ../../gtk2_ardour/pixmaps $Shared
|
2011-11-15 17:37:36 -05:00
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# put sooper sekrit ingredients here and they will be copied
|
|
|
|
#
|
|
|
|
|
|
|
|
if [ -d specialSauce ] ; then
|
2011-01-31 09:48:34 -05:00
|
|
|
cp -r specialSauce $Etc
|
2010-11-03 22:39:45 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# share stuff
|
|
|
|
|
|
|
|
cp -R ../../gtk2_ardour/splash.png $Shared
|
2012-05-20 10:23:49 -04:00
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
# go through and recursively remove any .svn dirs in the bundle
|
|
|
|
for svndir in `find $APPDIR -name .svn -type d`; do
|
2011-01-31 09:48:34 -05:00
|
|
|
rm -rf $svndir
|
2010-11-03 22:39:45 -04:00
|
|
|
done
|
|
|
|
|
2011-02-07 16:19:27 -05:00
|
|
|
#
|
|
|
|
# Add the uninstaller
|
|
|
|
#
|
2011-02-25 17:05:15 -05:00
|
|
|
sed -e "s/%REPLACE_PGM%/${APPNAME}/" -e "s/%REPLACE_VENDOR%/${VENDOR}/" -e "s/%REPLACE_VERSION%/${release_version}/" -e "s/%REPLACE_BUILD%/${svn_version}/" -e "s/%REPLACE_TYPE%/${BUILDTYPE}/" < uninstall.sh.in > $APPBIN/${APP_VER_NAME}.uninstall.sh
|
2011-02-07 16:19:27 -05:00
|
|
|
chmod a+x $APPBIN/${APP_VER_NAME}.uninstall.sh
|
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
#Sanity Check file
|
2011-01-31 10:37:22 -05:00
|
|
|
if [ -e $BUILD_ROOT/tools/sanity_check/sanityCheck ]; then
|
2011-02-07 15:56:39 -05:00
|
|
|
cp $BUILD_ROOT/tools/sanity_check/sanityCheck $APPBIN
|
2011-01-31 09:48:34 -05:00
|
|
|
else
|
|
|
|
echo "!!!ERROR !!! sanityCheck program is missing. packager will exit without being complete"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Building tarball ..."
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2011-01-31 09:48:34 -05:00
|
|
|
rm -f $APPDIR.tar.bz2
|
|
|
|
tar -cjf $APPDIR.tar.bz2 $APPDIR
|
2010-11-03 22:39:45 -04:00
|
|
|
|
2011-04-06 15:02:11 -04:00
|
|
|
echo "Calculating bundle size"
|
|
|
|
du -sb $APPDIR/ | awk '{print $1}' > $APPDIR.size
|
|
|
|
|
2011-02-25 17:05:15 -05:00
|
|
|
rm -rf $APPDIR/
|
|
|
|
|
2010-11-03 22:39:45 -04:00
|
|
|
echo "Done."
|
|
|
|
|