i18n package names are suffixed with the major release, to allow parallel (normal...
[ardour.git] / tools / linux_packaging / build
1 #!/bin/bash
2
3 # script for pulling together a Linux app bundle.
4 #
5 # This will create a bundle for a single architecture.
6 # Execute this scirpt on both x86 and x86_64 and then use
7 # package to merge the 2 bundles into a final package with the
8 # installer. See "noderun" for a complete build script.
9
10 # where the GTK stack is installed
11 GTKSTACK_ROOT=$HOME/gtk/inst
12 # where the Ardour dependencies are installed
13 ARDOURSTACK_ROOT=$HOME/a3/inst
14 # the waf build tree to use when copying built/generated files
15 BUILD_ROOT=../../build
16
17 MIXBUS=
18 WITH_LADSPA=0
19 STRIP=all
20 PRINT_SYSDEPS=
21 WITH_NLS=
22 EXTERNAL_JACK=
23 VENDOR=Ardour ;
24 BUILDTYPE=""
25
26 if [ $# -eq 0 ] ; then
27         echo ""  
28         echo "ERROR - Please specify build type"
29         echo "    --public"
30         echo "    --mixbus"
31         echo ""  
32         exit 1
33 fi
34
35 while [ $# -gt 0 ] ; do
36         echo "arg = $1"
37         case $1 in
38
39         #
40         # top level build targets
41         #
42
43         --mixbus)
44                 MIXBUS=1; 
45                 WITH_NLS=1 ; 
46                 WITH_LADSPA=; 
47                 STRIP=all
48                 APPNAME=Mixbus ;
49                 VENDOR=Harrison ;
50                 shift ;;
51         --public)
52                 WITH_NLS=1 ; 
53                 WITH_LADSPA=; 
54                 STRIP=all ; 
55                 APPNAME=Ardour ;
56                 shift ;;
57         --allinone)
58                 WITH_NLS= ; 
59                 WITH_LADSPA=1; 
60                 STRIP=all; 
61                 shift ;;
62         --test) WITH_LADSPA=; STRIP= ; shift ;;
63
64         #
65         # specific build flags
66         #
67
68         --nojack) INTERNAL_JACK= ; shift ;;
69         --noladspa) WITH_LADSPA= ; shift ;;
70         --strip) STRIP=$2 ; shift ; shift ;;
71         --sysdeps) PRINT_SYSDEPS=1; shift ;;
72         --nls) WITH_NLS=1 ; shift ;;
73
74         *)
75                 #catch all for unknown arguments
76                 echo ""
77                 echo "!!! ERROR !!! - Unknown argument $1"
78                 echo ""
79                 exit 1
80                 ;;
81         esac
82 done
83
84 if test x$STRIP != xall -a x$STRIP != xnone -a x$STRIP != xsome ; then
85     echo "Unknown strip option \"$STRIP\""
86     echo "Legal values are: all, none, some"
87     exit 1
88 fi
89
90 release_version=`grep -m 1 '^VERSION' ../../wscript | awk '{print $3}' | sed "s/'//g"`
91 svn_version=`grep -m 1 'svn_revision =' ../../libs/ardour/svn_revision.cc | cut -d'"' -f 2`
92 echo "Version is $release_version / $svn_version"
93 info_string="$release_version/$svn_version built on `hostname` by `whoami` on `date`"
94 echo "Info string is $info_string"
95
96 # Figure out our CPU type
97 case `uname -m` in
98         i[3456789]86|x86|i86pc)
99                 echo "Architecture is x86"
100                 ARCH='x86'
101                 ARCH_BITS='32-bit'
102                 ;;
103         x86_64|amd64|AMD64)
104                 echo "Architecture is x86_64"
105                 ARCH='x86_64'
106                 ARCH_BITS='64-bit'
107                 ;;
108         *)
109                 echo ""
110                 echo "ERROR - Unknown architecture `uname -m`"
111                 echo ""
112                 exit 1
113                 ;;
114 esac
115
116 # Figure out the Build Type
117 if grep -q "DEBUG = True" ../../build/c4che/default.cache.py; then
118         DEBUG="T"
119 else
120         DEBUG="F"
121 fi
122
123 if [ x$DEBUG = xT ]; then
124     BUILDTYPE="dbg"
125     if [ x$STRIP = xall ] ; then
126         echo "A debug build with --strip all makes no sense - STRIP reset to \"some\""
127         STRIP=some
128     fi
129 fi
130
131 # setup directory structure
132
133 if [ -z "${BUILDTYPE}" ]; then
134         APPDIR=${APPNAME}_${ARCH}-${release_version}_${svn_version}
135         APP_VER_NAME=${APPNAME}-${release_version}_${svn_version}
136 else
137         APPDIR=${APPNAME}_${ARCH}-${release_version}_${svn_version}-${BUILDTYPE}
138         APP_VER_NAME=${APPNAME}-${release_version}_${svn_version}-${BUILDTYPE}
139 fi
140
141 APPBIN=$APPDIR/bin
142 APPLIB=$APPDIR/lib
143 Libraries=$APPLIB
144 Etc=$APPDIR/etc
145 Shared=$APPDIR/share
146
147 Plugins=$APPLIB/plugins
148 Surfaces=$APPLIB/surfaces
149 Panners=$APPLIB/panners
150
151 Modules=$Libraries/modules
152 Loaders=$Libraries/loaders
153
154 Templates=$Shared/templates
155 ExportFormats=$Shared/export
156 Locale=$Shared/locale
157 MidiMaps=$Shared/midi_maps
158 PatchFiles=$Shared/patchfiles
159 MackieControl=$Shared/mcp
160
161 if [ x$PRINT_SYSDEPS != x ] ; then
162 #
163 # print system dependencies
164 #
165
166         for file in $APPBIN/* $Libraries/* $Modules/* $Plugins/*.so ; do 
167                 if ! file $file | grep -qs Mach-O ; then
168                         continue
169                 fi
170                 otool -L $file | awk '{print $1}' | egrep -v "(^@executable_path|^Ardour[0-9][.0-9]*.app)" 
171         done | sort | uniq
172         exit 0
173 fi
174
175 echo "Removing old $APPDIR tree ..."
176 rm -rf $APPDIR/
177
178 echo "Building new app directory structure ..."
179
180 # only bother to make the longest paths
181
182 mkdir -p $APPDIR
183 mkdir -p $APPBIN
184 mkdir -p $APPLIB
185 mkdir -p $Etc
186 mkdir -p $Plugins
187 mkdir -p $Modules
188 mkdir -p $Loaders
189 mkdir -p $Shared
190 mkdir -p $Locale
191 mkdir -p $Surfaces
192 mkdir -p $MidiMaps
193 mkdir -p $PatchFiles
194 mkdir -p $MackieControl
195 mkdir -p $ExportFormats
196 mkdir -p $Panners
197 mkdir -p $Templates
198 mkdir -p $Shared/templates
199 mkdir -p $Shared/doc
200
201 # maybe set variables
202 ENVIRONMENT=environment
203 rm -f $ENVIRONMENT
204 touch $ENVIRONMENT
205
206 if test x$MIXBUS != x ; then
207         echo export ARDOUR_MIXBUS=true >> $ENVIRONMENT
208         #
209         # current default for MIXBUS version is US keyboard layout without a keypad
210         #
211         echo export ARDOUR_KEYBOARD_LAYOUT=us-nokeypad >> $ENVIRONMENT
212         echo export ARDOUR_UI_CONF=ardour3_ui.conf >> $ENVIRONMENT
213         echo export ARDOUR3_UI_RC=ardour3_ui_dark.rc >> $ENVIRONMENT
214 fi
215
216 #
217 # if we're not going to bundle JACK, make sure we can find
218 # jack in the places where it might be
219 #
220
221 echo export 'PATH=/usr/local/bin:/opt/bin:$PATH' >> $ENVIRONMENT
222
223 # create startup helper script
224
225 sed -e "/^%ENV%/r $ENVIRONMENT" -e '/^%ENV%/d' -e 's/%VER%/'"${release_version}"'/' < ardour.sh.in > $APPBIN/ardour3
226 rm $ENVIRONMENT && chmod 775 $APPBIN/ardour3
227 # the 3.0 here is not the same as "release-version" because the latter may include "-betaN" etc.
228 MAIN_EXECUTABLE=ardour-3.0
229
230 echo "Copying ardour executable ...."
231 cp $BUILD_ROOT/gtk2_ardour/$MAIN_EXECUTABLE $APPBIN
232 if test x$STRIP = xall ; then
233         strip $APPBIN/$MAIN_EXECUTABLE
234 fi
235
236 # copy locale files
237 # note that at present(feb 2011), the .mo files end up in the source tree which is
238 # not really as it should be.
239 if test x$WITH_NLS != x ; then
240         echo "NLS support ..."
241         echo "I hope you remembered to run scons msgupdate!"
242         LINGUAS=
243
244         for pkg in gtk2_ardour libs/ardour libs/gtkmm2ext ; do 
245             files=`find ../../$pkg -name "*.mo"`
246
247             #
248             # the package name is appended with a number so that
249             # it can be parallel installed during a regular install
250             # with older (and newer) versions. it is just the major
251             # number of the release (i.e. leading digits)
252             #
253
254             vsuffix=`echo $release_version | sed 's/^\([0-9][0-9]*\).*/\1/'`
255
256             if [ -z "$files" ]; then
257                 echo ""
258                 echo "!!!! WARNING !!!! - Did not find any .mo files in ../../$pkg"
259                 echo ""
260             fi
261  
262             for file in $files 
263             do
264                 echo $file
265                 lang=`basename $file | sed 's/\.mo//'`
266                 mkdir -p $Locale/$lang/LC_MESSAGES
267                 cp $file $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix
268                 echo copy $file to $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix
269                 if echo $LINGUAS | grep $lang >/dev/null 2>&1 ; then
270                     :
271                 else 
272                     LINGUAS="$LINGUAS $lang"
273                 fi
274             done
275         done
276
277         GTK_MESSAGES="atk10.mo gdk-pixbuf.mo gtk20-properties.mo gtk20.mo atk10.mo glib20.mo"
278         LOCALEROOT=/usr/share/locale
279
280         for l in $LINGUAS ; do
281                 echo "Copying GTK i18n files for $l..."
282                 for MO in $GTK_MESSAGES ; do 
283                         if [ -f $LOCALEROOT/$l/LC_MESSAGES/$MO ] ; then
284                                 cp $LOCALEROOT/$l/LC_MESSAGES/$MO $Locale/$l/LC_MESSAGES
285                         else
286                                 # try with just the language spec
287                                 just_lang=`echo $l | sed 's/_[A-Z][A-Z]$//'`
288                                 if [ -f $LOCALEROOT/$just_lang/LC_MESSAGES/$MO ] ; then
289                                         cp $LOCALEROOT/$just_lang/LC_MESSAGES/$MO $Locale/$just_lang/LC_MESSAGES
290                                 fi
291                         fi
292                 done
293         done
294 else
295         echo "Skipping NLS support"
296 fi
297
298 #
299 # Copy stuff that may be dynamically loaded
300
301
302 cp -R $GTKSTACK_ROOT/etc/* $Etc
303 echo "Copying all Pango modules ..."
304 cp -R $GTKSTACK_ROOT/lib/pango/1.6.0/modules/*.so $Modules
305 echo "Copying all GDK Pixbuf loaders ..."
306 cp -R $GTKSTACK_ROOT/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so $Loaders
307
308 # Generate a pango module file using the actual Pango that we're going to bundle
309
310 cat > pangorc <<EOF 
311 [Pango]
312 ModulesPath=$GTKSTACK_ROOT/lib/pango/1.6.0/modules
313 EOF
314 env PANGO_RC_FILE=pangorc $GTKSTACK_ROOT/bin/pango-querymodules | sed "s?$GTKSTACK_ROOT/lib/pango/1.6.0/?@ROOTDIR@/?" > $Etc/pango.modules.in
315 rm pangorc
316
317 # Ditto for gdk-pixbuf loaders
318 gdk-pixbuf-query-loaders | sed "s?$GTKSTACK_ROOT/lib/gdk-pixbuf-2.0/2.10.0/?@ROOTDIR@/?" > $Etc/gdk-pixbuf.loaders.in
319
320 # We rely on clearlooks, so include a version from our own build tree
321 # this one is special - we will set GTK_PATH to $Libraries/clearlooks
322
323 echo "Copying clearlooks ..."
324 cp $BUILD_ROOT/libs/clearlooks-newer/libclearlooks.so $Libraries
325 mkdir -p $Libraries/clearlooks/engines
326 (cd $Libraries/clearlooks/engines && ln -s ../../libclearlooks.so . )
327
328 # LADSPA
329 if test x$WITH_LADSPA != x ; then
330         if test x$MIXBUS != x ; then
331                 plugdir=mixbus_ladspa
332         else
333                 plugdir=ladspa
334         fi
335         echo "Copying `ls $plugdir | wc -l` plugins ..."
336         if [ -d $plugdir ] ; then
337                 cp -r $plugdir/* $Plugins
338         fi
339 fi
340
341 # Control Surfaces
342 cp $BUILD_ROOT/libs/surfaces/*/libardour_*.so* $Surfaces
343 cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp.so* $Libraries
344
345 # MidiMaps
346 # got to be careful with names here
347 for x in $BUILD_ROOT/../midi_maps/*.map ; do
348     cp "$x" $MidiMaps
349 done
350
351 # MIDNAM Patch Files
352 # got to be careful with names here
353 for x in $BUILD_ROOT/../patchfiles/*.midnam ; do
354     cp "$x" $PatchFiles
355 done
356
357 # MackieControl data
358 # got to be careful with names here
359 for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
360     cp "$x" $MackieControl
361 done
362
363 # Templates
364 for f in $BUILD_ROOT/../templates/* ; do 
365     if [ -d "$f" ] ; then
366         echo Template: $f ; cp -r "$f" $Templates ; 
367     fi
368 done
369
370 # ExportFormats
371 # got to be careful with names here
372 for x in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do
373     cp "$x" $ExportFormats
374 done
375
376 # Panners
377 cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners
378
379 # VAMP plugins that we use
380 cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.so* $Libraries
381
382 # Suil modules
383 cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Libraries
384
385 OURLIBDIR=$BUILD_ROOT/libs
386 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/libltc:$OURLIBDIR/qm-dsp
387
388 echo $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
389
390 checkedIdx=0
391 deplibs=
392
393 while [ true ] ; do 
394         missing=false
395         filelist=`find $APPLIB/ -type f`
396         filelist="$APPBIN/$MAIN_EXECUTABLE $filelist"
397
398         for file in $filelist  ; do 
399                 if ! file $file | grep -qs ELF ; then
400                         continue
401                 fi
402
403                 # speed this up a bit by not checking things multiple times.
404                 for i in "${depCheckedList[@]}"; do
405                         if [ $i == $file ]; then
406                                 continue 2
407                         fi
408                 done
409                 depCheckedList[$checkIdx]=$file
410                 checkIdx=$(($checkIdx + 1))
411                 
412                 # do not include libjack
413                 deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | awk '{print $3}'`
414
415                 echo -n "."
416                 for dep in $deps ; do
417                         if test "not" = ${dep}; then 
418                                 echo ""
419                                 echo "!!! ERROR !!! - Missing dependant library for $file."
420                                 echo "Searched: " $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
421                                 echo ""
422                                 (LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file)
423                                 echo ""
424                                 echo "!!! ERROR !!! - See Above"
425                                 exit 1
426                         fi
427
428                         # don't use anything mapped at a specific address
429                         if echo $dep | grep -qs '0x' ; then continue; fi
430                         # don't include /lib
431                         if echo $dep | grep -qs "^/lib/" ; then continue; fi
432                         # don't include jack
433                         if echo $dep | grep -qs libjack ; then continue; fi
434                         # don't include ALSA
435                         if echo $dep | grep -qs libasound ; then continue; fi
436                         # don't include any X Window libraries
437                         if echo $dep | grep -qs libX\. ; then continue; fi  
438                         if echo $dep | grep -qs libxcb ; then continue; fi  
439                         if echo $dep | grep -qs libICE\. ; then continue; fi  
440                         if echo $dep | grep -qs libSM\. ; then continue; fi  
441                         # don't include libc
442                         if echo $dep | grep -qs 'libc\.' ; then continue; fi
443                         # don't include libstdc++
444                         if echo $dep | grep -qs libstdc++ ; then continue; fi
445
446                         base=`basename $dep`
447                         if ! test -f $Libraries/$base; then
448                                 parent=$(basename ${file})
449                                 if echo $dep | grep -sq '^libs' ; then
450                                         echo "Copying dependant lib $BUILD_ROOT/$dep    (required by ${parent})"
451                                         cp $BUILD_ROOT/$dep $Libraries
452                                 else
453                                         echo "Copying dependant lib $dep    (required by ${parent})"
454                                         cp $dep $Libraries
455                                 fi
456                                 #
457                                 # reset RPATH so that the runtime linker never looks
458                                 # in places we don't want it to
459                                 #
460                                 chrpath -r foo $Libraries/`basename $dep`
461                                 if echo $dep | grep -sq '^/' ; then
462                                     # absolute path, candidate for stripping
463                                     deplibs="$deplibs $base"
464                                 fi
465                                 missing=true
466                         fi
467                 done
468         done
469         if test x$missing = xfalse ; then
470                 # everything has been found
471                 break
472         fi
473 done
474 echo
475
476 # strip libraries
477 if test x$STRIP = xall ; then
478     echo Stripping all libraries
479     # Must be writable so that we can strip
480     find $APPLIB/ -name "*.so*" | xargs chmod u+w
481     # and strip ...
482     find $APPLIB/ -name "*.so*" | xargs strip
483 elif test x$STRIP = xsome ; then
484     echo Stripping dependent libraries
485     for l in $deplibs ; do
486         chmod u+w $APPLIB/$l
487         strip $APPLIB/$l
488     done
489 fi
490 find $APPLIB/ -name "*.so*" | xargs chmod a+rx
491
492 echo "Copying other stuff to $APPDIR  ..."
493
494 # these are all generated by waf
495 #cp $BUILD_ROOT/gtk2_ardour/ergonomic-us.bindings       $Etc
496 cp $BUILD_ROOT/gtk2_ardour/mnemonic-us.bindings  $Etc
497 cp $BUILD_ROOT/gtk2_ardour/ardour.menus $Etc
498 cp ../../ardour_system.rc $Etc/ardour_system.rc
499 cp $BUILD_ROOT/gtk2_ardour/ardour3_ui_*.rc $Etc
500
501 # these are copied straight from the source tree
502
503 cp ../../gtk2_ardour/ardour3_ui_default.conf $Etc/ardour3_ui_default.conf
504 cp ../../gtk2_ardour/ardour3_ui_default.conf $Etc/ardour3_ui.conf
505 cp ../../instant.xml $Etc/instant.xml
506 cp ../../gtk2_ardour/step_editing.bindings $Etc
507 cp ../../gtk2_ardour/mixer.bindings $Etc
508 cp -r ../../gtk2_ardour/icons $Shared
509 cp -r ../../gtk2_ardour/pixmaps $Shared
510
511
512 #
513 # put sooper sekrit ingredients here and they will be copied
514 #
515
516 if [ -d specialSauce ] ; then
517         cp -r specialSauce $Etc
518 fi
519
520 # share stuff
521
522 cp -R ../../gtk2_ardour/splash.png $Shared
523
524 # go through and recursively remove any .svn dirs in the bundle
525 for svndir in `find $APPDIR -name .svn -type d`; do
526         rm -rf $svndir
527 done
528
529 #
530 # Add the uninstaller
531 #
532 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
533 chmod a+x $APPBIN/${APP_VER_NAME}.uninstall.sh
534
535 #Sanity Check file
536 if [ -e $BUILD_ROOT/tools/sanity_check/sanityCheck ]; then
537         cp $BUILD_ROOT/tools/sanity_check/sanityCheck $APPBIN
538 else
539         echo "!!!ERROR !!! sanityCheck program is missing. packager will exit without being complete"
540         exit 1
541 fi
542
543 echo "Building tarball ..."
544
545 rm -f $APPDIR.tar.bz2
546 tar -cjf $APPDIR.tar.bz2 $APPDIR
547
548 echo "Calculating bundle size"
549 du -sb $APPDIR/  | awk '{print $1}' > $APPDIR.size
550
551 rm -rf $APPDIR/
552
553 echo "Done."
554