Re-use locations when setting location list state, so that selected locations are...
[ardour.git] / tools / linux_packaging / build
index 5f3eacfdde16257cb087c44e4d5a2cc270871fb6..2cef0bb04587f58840a98e35cf3b4aad0b294aaa 100755 (executable)
@@ -13,7 +13,7 @@
 
 MIXBUS=
 WITH_LADSPA=0
-STRIP=1
+STRIP=all
 PRINT_SYSDEPS=
 WITH_NLS=
 EXTERNAL_JACK=
@@ -41,20 +41,20 @@ while [ $# -gt 0 ] ; do
                MIXBUS=1; 
                WITH_NLS=1 ; 
                WITH_LADSPA=; 
-               STRIP=1; 
+               STRIP=all
                APPNAME=Mixbus ;
                 VENDOR=Harrison ;
                shift ;;
        --public)
                WITH_NLS=1 ; 
                WITH_LADSPA=; 
-               STRIP=1 ; 
+               STRIP=all ; 
                APPNAME=Ardour ;
                shift ;;
        --allinone)
                WITH_NLS= ; 
                WITH_LADSPA=1; 
-               STRIP=1
+               STRIP=all
                shift ;;
        --test) WITH_LADSPA=; STRIP= ; shift ;;
 
@@ -64,7 +64,7 @@ while [ $# -gt 0 ] ; do
 
        --nojack) INTERNAL_JACK= ; shift ;;
        --noladspa) WITH_LADSPA= ; shift ;;
-       --nostrip) STRIP= ; shift ;;
+       --strip) STRIP=$2 ; shift ; shift ;;
        --sysdeps) PRINT_SYSDEPS=1; shift ;;
        --nls) WITH_NLS=1 ; shift ;;
 
@@ -78,6 +78,12 @@ while [ $# -gt 0 ] ; do
        esac
 done
 
+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
+
 release_version=`grep -m 1 '^VERSION' ../../wscript | awk '{print $3}' | sed "s/'//g"`
 svn_version=`grep -m 1 'svn_revision =' ../../libs/ardour/svn_revision.cc | cut -d"'" -f 2`
 echo "Version is $release_version / $svn_version"
@@ -111,12 +117,12 @@ else
        DEBUG="F"
 fi
 
-if [ x$DEBUG != x ]; then
-       if [ x$STRIP != x ]; then
-               BUILDTYPE="strip"
-       else
-               BUILDTYPE="dbg"
-       fi
+if [ x$DEBUG = xT ]; then
+    BUILDTYPE="dbg"
+    if [ x$STRIP = xall ] ; then
+        echo "A debug build with --strip all makes no sense - STRIP reset to \"some\""
+        STRIP=some
+    fi
 fi
 
 # the waf build tree to use when copying built/generated files
@@ -141,7 +147,9 @@ Shared=$APPDIR/share
 Plugins=$APPLIB/plugins
 Surfaces=$APPLIB/surfaces
 Panners=$APPLIB/panners
+ExportFormats=$Shared/export
 Locale=$Shared/locale
+MidiMaps=$Shared/midi_maps
 Modules=$Libraries/modules
 Loaders=$Libraries/loaders
 
@@ -177,6 +185,8 @@ mkdir -p $Loaders
 mkdir -p $Shared
 mkdir -p $Locale
 mkdir -p $Surfaces
+mkdir -p $MidiMaps
+mkdir -p $ExportFormats
 mkdir -p $Panners
 mkdir -p $Shared/templates
 mkdir -p $Shared/doc
@@ -212,7 +222,7 @@ MAIN_EXECUTABLE=ardour-3.0
 
 echo "Copying ardour executable ...."
 cp $BUILD_ROOT/gtk2_ardour/$MAIN_EXECUTABLE $APPBIN
-if test x$STRIP != x ; then
+if test x$STRIP = xall ; then
        strip $APPBIN/$MAIN_EXECUTABLE
 fi
 
@@ -429,6 +439,19 @@ cp $BUILD_ROOT/libs/surfaces/*/libardour*.so* $Surfaces
 # hack ... move libardour_cp back into Libraries
 mv $Surfaces/libardourcp.so* $Libraries
 
+# MidiMaps
+# got to be careful with names here
+for x in $BUILD_ROOT/../../midi_maps/*.map ; do
+    cp "$x" $MidiMaps
+    echo Copied MIDI map $x 
+done
+
+# ExportFormats
+# got to be careful with names here
+for x in $BUILD_ROOT/../../export/*.preset $BUILD_ROOT/../../export/*.format ; do
+    cp "$x" $ExportFormats
+done
+
 # Panners
 cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners
 
@@ -441,6 +464,7 @@ OURLIBS=$OURLIBDIR/vamp-sdk:$OURLIBDIR/surfaces/control_protocol:$OURLIBDIR/ardo
 echo $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
 
 checkedIdx=0
+deplibs=
 
 while [ true ] ; do 
        missing=false
@@ -501,6 +525,10 @@ while [ true ] ; do
                                        echo "Copying dependant lib $dep    (required by ${parent})"
                                        cp $dep $Libraries
                                fi
+                                if echo $dep | grep -sq '^/' ; then
+                                    # absolute path, candidate for stripping
+                                    deplibs="$deplibs $base"
+                                fi
                                missing=true
                        fi
                done
@@ -513,9 +541,14 @@ done
 echo
 
 # strip libraries
-if test x$STRIP != x ; then
-    echo Stripping libraries
+if test x$STRIP = xall ; then
+    echo Stripping all libraries
     find $APPLIB/ -name "*.so*" | xargs strip
+elif test x$STRIP = xsome ; then
+    echo Stripping dependent libraries
+    for l in $deplibs ; do
+        strip $APPLIB/$l
+    done
 fi
 find $APPLIB/ -name "*.so*" | xargs chmod a+rx
 
@@ -526,8 +559,7 @@ echo "Copying other stuff to $APPDIR  ..."
 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
-# temporarily unavailable
-#cp $BUILD_ROOT/gtk2_ardour/ardour3_ui_light.rc $Etc
+cp $BUILD_ROOT/gtk2_ardour/ardour3_ui_light.rc $Etc
 cp $BUILD_ROOT/gtk2_ardour/ardour3_ui_dark.rc $Etc
 
 # these are copied straight from the source tree
@@ -575,6 +607,9 @@ echo "Building tarball ..."
 rm -f $APPDIR.tar.bz2
 tar -cjf $APPDIR.tar.bz2 $APPDIR
 
+echo "Calculating bundle size"
+du -sb $APPDIR/  | awk '{print $1}' > $APPDIR.size
+
 rm -rf $APPDIR/
 
 echo "Done."