don't bundle no-inst scripts
[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 . ../define_versions.sh
18
19 # where harvid and xjadeo binaries are cached
20 if test -z "$CACHEDIR" -o ! -d "$CACHEDIR"; then
21         CACHEDIR=`pwd`
22 fi
23
24 MIXBUS=
25 WITH_HARRISON_LV2=
26 WITH_X42_LV2=
27 WITH_LADSPA=0
28 WITH_HARVID=
29 STRIP=all
30 PRINT_SYSDEPS=
31 WITH_NLS=
32 EXTERNAL_JACK=
33 VENDOR=Ardour ;
34 EXENAME=ardour
35 GCC5ABI=false
36 USEWINE=false
37 BUILDTYPE=""
38 NOSTRIP="libsuil|libserd|libsord|liblilv|libsratom|liblrdf|libardour|libpbd|libevoral"
39 : ${HARRISONCHANNELSTRIP=harrison_channelstrip}
40
41
42 if [ $# -eq 0 ] ; then
43         echo ""
44         echo "ERROR - Please specify build type"
45         echo "    --public"
46         echo "    --mixbus"
47         echo ""
48         exit 1
49 fi
50
51 while [ $# -gt 0 ] ; do
52         echo "arg = $1"
53         case $1 in
54
55         #
56         # top level build targets
57         #
58
59         --mixbus)
60                 MIXBUS=1;
61                 WITH_HARRISON_LV2=1 ;
62                 WITH_X42_LV2=1 ;
63                 WITH_NLS=1 ;
64                 WITH_LADSPA=;
65                 STRIP=all
66                 APPNAME=Mixbus ;
67                 VENDOR=Harrison ;
68                 EXENAME=mixbus ;
69                 shift ;;
70         --mixbus32c)
71                 MIXBUS=1;
72                 WITH_HARRISON_LV2=1 ;
73                 WITH_X42_LV2=1 ;
74                 WITH_NLS=1 ;
75                 WITH_LADSPA=;
76                 STRIP=all
77                 APPNAME=Mixbus32C ;
78                 VENDOR=Harrison ;
79                 EXENAME=mixbus32c ;
80                 major_version=""
81                 shift ;;
82         --public)
83                 WITH_HARRISON_LV2=1 ;
84                 WITH_NLS=1 ;
85                 WITH_LADSPA=;
86                 STRIP=all ;
87                 APPNAME=Ardour ;
88                 shift ;;
89         --allinone)
90                 WITH_NLS= ;
91                 WITH_LADSPA=1;
92                 STRIP=all;
93                 shift ;;
94         --test) WITH_LADSPA=; STRIP= ; shift ;;
95
96         #
97         # specific build flags
98         #
99
100         --nojack) INTERNAL_JACK= ; shift ;;
101         --noladspa) WITH_LADSPA= ; shift ;;
102         --strip) STRIP=$2 ; shift ; shift ;;
103         --sysdeps) PRINT_SYSDEPS=1; shift ;;
104         --nls) WITH_NLS=1 ; shift ;;
105         --harvid) WITH_HARVID=1 ; shift ;;
106         --gcc5abi) GCC5ABI=true ; shift ;;
107         --chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;;
108
109         *)
110                 #catch all for unknown arguments
111                 echo ""
112                 echo "!!! ERROR !!! - Unknown argument $1"
113                 echo ""
114                 exit 1
115                 ;;
116         esac
117 done
118
119 if test x$STRIP != xall -a x$STRIP != xnone -a x$STRIP != xsome ; then
120     echo "Unknown strip option \"$STRIP\""
121     echo "Legal values are: all, none, some"
122     exit 1
123 fi
124
125 . ../define_versions.sh
126
127 echo "Version is $release_version"
128 if [ "x$commit" != "x" ] ; then
129     info_string="$release_version ($commit) built on `hostname` by `whoami` on `date`"
130 else
131     info_string="$release_version built on `hostname` by `whoami` on `date`"
132 fi
133 echo "Info string is $info_string"
134
135 # Figure out our CPU type
136 case `uname -m` in
137         i[3456789]86|x86|i86pc)
138                 echo "Architecture is x86"
139                 ARCH='x86'
140                 WARCH='i386'
141                 HARCH='linux32'
142                 ARCH_BITS='32-bit'
143                 MULTIARCH='i386-linux-gnu'
144                 ;;
145         x86_64|amd64|AMD64)
146                 echo "Architecture is x86_64"
147                 ARCH='x86_64'
148                 WARCH='x86_64'
149                 HARCH='linux64'
150                 ARCH_BITS='64-bit'
151                 MULTIARCH='x86_64-linux-gnu'
152                 ;;
153         *)
154                 echo ""
155                 echo "ERROR - Unknown architecture `uname -m`"
156                 echo ""
157                 exit 1
158                 ;;
159 esac
160
161 if [ x$DEBUG = xT ]; then
162     BUILDTYPE="dbg"
163     if [ x$STRIP = xall ] ; then
164         echo "A debug build with --strip all makes no sense - STRIP reset to \"some\""
165         STRIP=some
166     fi
167 fi
168
169 # setup directory structure
170
171 if [ -z "${BUILDTYPE}" ]; then
172         APPDIR=${APPNAME}_${ARCH}-${release_version}
173         APP_VER_NAME=${APPNAME}-${release_version}
174 else
175         APPDIR=${APPNAME}_${ARCH}-${release_version}-${BUILDTYPE}
176         APP_VER_NAME=${APPNAME}-${release_version}-${BUILDTYPE}
177 fi
178
179 APPBIN=$APPDIR/bin
180 APPLIB=$APPDIR/lib
181 Libraries=$APPLIB
182 Etc=$APPDIR/etc
183 Shared=$APPDIR/share
184
185 Plugins=$APPLIB/plugins
186 Surfaces=$APPLIB/surfaces
187 Panners=$APPLIB/panners
188 Backends=$APPLIB/backends
189
190 Themes=$Shared/themes
191 Templates=$Shared/templates
192 ExportFormats=$Shared/export
193 Locale=$Shared/locale
194 MidiMaps=$Shared/midi_maps
195 PatchFiles=$Shared/patchfiles
196 LuaScripts=$Shared/scripts
197 MackieControl=$Shared/mcp
198
199 if [ x$PRINT_SYSDEPS != x ] ; then
200 #
201 # print system dependencies
202 #
203
204         for file in $APPBIN/* $Libraries/* $Plugins/*.so ; do
205                 if ! file $file | grep -qs Mach-O ; then
206                         continue
207                 fi
208                 otool -L $file | awk '{print $1}' | egrep -v "(^@executable_path|^Ardour[0-9][.0-9]*.app)"
209         done | sort | uniq
210         exit 0
211 fi
212
213 echo "Removing old $APPDIR tree ..."
214 rm -rf $APPDIR/
215
216 echo "Building new app directory structure ..."
217
218 # only bother to make the longest paths
219
220 mkdir -p $APPDIR
221 mkdir -p $APPBIN
222 mkdir -p $APPLIB
223 mkdir -p $Etc
224 mkdir -p $Shared
225 mkdir -p $Themes
226 mkdir -p $Locale
227 mkdir -p $Surfaces
228 mkdir -p $MidiMaps
229 mkdir -p $PatchFiles
230 mkdir -p $LuaScripts
231 mkdir -p $MackieControl
232 mkdir -p $ExportFormats
233 mkdir -p $Panners
234 mkdir -p $Backends
235 mkdir -p $Templates
236 mkdir -p $Shared/doc
237
238 # maybe set variables
239 ENVIRONMENT=environment
240 rm -f $ENVIRONMENT
241 touch $ENVIRONMENT
242
243 if test x$MIXBUS != x ; then
244         echo export ARDOUR_MIXBUS=true >> $ENVIRONMENT
245         #
246         # current default for MIXBUS version is US keyboard layout without a keypad
247         #
248         echo export ARDOUR_KEYBOARD_LAYOUT=us-nokeypad >> $ENVIRONMENT
249         echo export ARDOUR_UI_CONF=ardour3_ui.conf >> $ENVIRONMENT
250 fi
251
252 #
253 # if we're not going to bundle JACK, make sure we can find
254 # jack in the places where it might be
255 #
256
257 echo export 'PATH=/usr/local/bin:/opt/bin:$PATH' >> $ENVIRONMENT
258
259 # create startup helper script
260 if test -d $BUILD_ROOT/vst; then
261         WINEEXE=wine
262         USEWINE=true
263         echo export INSTALL_DIR >> $ENVIRONMENT
264 else
265         WINEEXE=
266 fi
267
268 sed -e "/^%ENV%/r $ENVIRONMENT" -e '/^%ENV%/d' -e 's/%VER%/'"${release_version}"'/;s/%EXENAME%/'"${EXENAME}"'/;s/%WINE%/'"$WINEEXE"'/' < ardour.sh.in > $APPBIN/${EXENAME}${major_version}
269 rm $ENVIRONMENT && chmod 775 $APPBIN/${EXENAME}${major_version}
270
271 echo "Copying ardour executable ...."
272 if test -d $BUILD_ROOT/vst; then
273         #cp -v $BUILD_ROOT/gtk2_ardour/libgtk2_ardour.so $APPLIB/
274         cp -v $BUILD_ROOT/gtk2_ardour/ardour-${release_version}-vst.exe.so $APPBIN/${EXENAME}-${release_version}
275 else
276         cp -v $BUILD_ROOT/gtk2_ardour/ardour-${release_version}* $APPBIN/${EXENAME}-${release_version}
277 fi
278
279 if test x$STRIP = xall ; then
280         strip -s $APPBIN/${EXENAME}-${release_version}
281 fi
282
283 # copy locale files
284 # note that at present(feb 2011), the .mo files end up in the source tree which is
285 # not really as it should be.
286 if test x$WITH_NLS != x ; then
287         echo "NLS support ..."
288         echo "I hope you remembered to run scons msgupdate!"
289         LINGUAS=
290
291         for pkg in gtk2_ardour libs/ardour libs/gtkmm2ext ; do
292             files=`find ../../$pkg -name "*.mo"`
293
294             #
295             # the package name is appended with a number so that
296             # it can be parallel installed during a regular install
297             # with older (and newer) versions. it is just the major
298             # number of the release (i.e. leading digits)
299             #
300
301             vsuffix=`echo $release_version | sed 's/^\([0-9][0-9]*\).*/\1/'`
302
303             if [ -z "$files" ]; then
304                 echo ""
305                 echo "!!!! WARNING !!!! - Did not find any .mo files in ../../$pkg"
306                 echo ""
307             fi
308
309             for file in $files
310             do
311                 echo $file
312                 lang=`basename $file | sed 's/\.mo//'`
313                 mkdir -p $Locale/$lang/LC_MESSAGES
314                 cp $file $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo
315                 echo copy $file to $Locale/$lang/LC_MESSAGES/`basename $pkg`$vsuffix.mo
316                 if echo $LINGUAS | grep $lang >/dev/null 2>&1 ; then
317                     :
318                 else
319                     LINGUAS="$LINGUAS $lang"
320                 fi
321             done
322         done
323
324         GTK_MESSAGES="atk10.mo gdk-pixbuf.mo gtk20-properties.mo gtk20.mo atk10.mo glib20.mo"
325         LOCALEROOT=$GTKSTACK_ROOT/share/locale
326
327         for l in $LINGUAS ; do
328                 echo "Copying GTK i18n files for $l..."
329                 for MO in $GTK_MESSAGES ; do
330                         if [ -f $LOCALEROOT/$l/LC_MESSAGES/$MO ] ; then
331                                 cp $LOCALEROOT/$l/LC_MESSAGES/$MO $Locale/$l/LC_MESSAGES
332                         else
333                                 # try with just the language spec
334                                 just_lang=`echo $l | sed 's/_[A-Z][A-Z]$//'`
335                                 if [ -f $LOCALEROOT/$just_lang/LC_MESSAGES/$MO ] ; then
336                                         cp $LOCALEROOT/$just_lang/LC_MESSAGES/$MO $Locale/$just_lang/LC_MESSAGES
337                                 fi
338                         fi
339                 done
340         done
341 else
342         echo "Skipping NLS support"
343 fi
344
345 #
346 # Copy stuff that may be dynamically loaded
347 #
348
349 cp -R $GTKSTACK_ROOT/etc/* $Etc
350
351 # We rely on clearlooks, so include a version from our own build tree
352 # this one is special - we will set GTK_PATH to $Libraries/gtkengines
353
354 GTK_ENGINE_DIR=$Libraries/gtkengines/engines
355 mkdir -p $GTK_ENGINE_DIR
356
357 echo "Copying GTK engines ..."
358 cp $BUILD_ROOT/libs/clearlooks-newer/libclearlooks.so $Libraries
359 (cd $GTK_ENGINE_DIR && ln -s ../../libclearlooks.so . )
360
361 cp $GTKSTACK_ROOT/lib/gtk-2.0/2.10.0/engines/libpixmap.so $Libraries
362 (cd $GTK_ENGINE_DIR && ln -s ../../libpixmap.so . )
363
364 # LADSPA
365 if test x$WITH_LADSPA != x ; then
366         if test x$MIXBUS != x ; then
367                 plugdir=mixbus_ladspa
368         else
369                 plugdir=ladspa
370         fi
371         echo "Copying `ls $plugdir | wc -l` plugins ..."
372         if [ -d $plugdir ] ; then
373                 mkdir -p $Plugins
374                 cp -r $plugdir/* $Plugins
375         fi
376 fi
377
378 # Control Surfaces
379 cp $BUILD_ROOT/libs/surfaces/*/libardour_*.so* $Surfaces
380 cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp.so* $Libraries
381
382 # MidiMaps
383 # got to be careful with names here
384 for x in $BUILD_ROOT/../midi_maps/*.map ; do
385     cp "$x" $MidiMaps
386 done
387
388 # MIDNAM Patch Files
389 # got to be careful with names here
390 for x in $BUILD_ROOT/../patchfiles/*.midnam ; do
391     cp "$x" $PatchFiles
392 done
393
394 # Lua Scripts Files
395 # got to be careful with names here
396 for x in $BUILD_ROOT/../scripts/*.lua ; do
397           if test "${x:0:1}" = "_"; then
398                         continue;
399                 fi
400     cp "$x" $LuaScripts
401 done
402
403 # MackieControl data
404 # got to be careful with names here
405 for x in $BUILD_ROOT/../mcp/*.device $BUILD_ROOT/../mcp/*.profile ; do
406     cp "$x" $MackieControl
407 done
408
409 # Templates
410 #for f in $BUILD_ROOT/../templates/* ; do
411 #    if [ -d "$f" ] ; then
412 #       echo Template: $f ; cp -r "$f" $Templates ;
413 #    fi
414 #done
415
416 # ExportFormats
417 # got to be careful with names here
418 for x in $BUILD_ROOT/../export/*.preset $BUILD_ROOT/../export/*.format ; do
419     cp "$x" $ExportFormats
420 done
421
422 # Panners
423 cp $BUILD_ROOT/libs/panners/*/lib*.so* $Panners
424
425 # Backends
426 for backend in jack alsa dummy wavesaudio ; do
427     cp $BUILD_ROOT/libs/backends/$backend/lib*.so* $Backends
428 done
429
430 # VAMP plugins that we use
431 cp $BUILD_ROOT/libs/vamp-plugins/libardourvampplugins.so* $Libraries
432
433 # Suil modules (new dir 'build-stack')
434 if test -d $GTKSTACK_ROOT/lib/suil-0/ ; then
435     cp $GTKSTACK_ROOT/lib/suil-0/lib* $Libraries
436 fi
437
438 # Suil modules (old dir 'build-ardour-stack')
439 if test -d $ARDOURSTACK_ROOT/lib/suil-0/ ; then
440     cp $ARDOURSTACK_ROOT/lib/suil-0/lib* $Libraries
441 fi
442
443 # VST scanner app (both LXVST as well as WIN-VST, 2in1)
444 # (if build with wine: ardour-vst-scanner is a wrapper
445 #  script for ardour-vst-scanner.exe.so, if VST is disabled
446 #  neither binary nor script exists)
447 if test -d $BUILD_ROOT/libs/fst ; then
448     cp $BUILD_ROOT/libs/fst/ardour-vst-scanner* $APPLIB || true
449     if test x$STRIP = xall ; then
450         strip -s $APPLIB/ardour-vst-scanner*
451     fi
452 fi
453
454 # vfork wrapper
455 if test -f $BUILD_ROOT/libs/vfork/ardour-exec-wrapper ; then
456     cp $BUILD_ROOT/libs/vfork/ardour-exec-wrapper $APPLIB
457     if test x$STRIP = xall ; then
458         strip -s $APPLIB/ardour-exec-wrapper
459     fi
460 fi
461
462 # ALSA device reservation tool (if available)
463 if test -f $BUILD_ROOT/libs/ardouralsautil/ardour-request-device; then
464     cp $BUILD_ROOT/libs/ardouralsautil/ardour-request-device $APPLIB/ || true
465     if test x$STRIP = xall ; then
466         strip -s $APPLIB/ardour-request-device
467     fi
468 fi
469
470 OURLIBDIR=$BUILD_ROOT/libs
471 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/canvas:$OURLIBDIR/libsndfile:$OURLIBDIR/evoral:$OURLIBDIR/evoral/src/libsmf:$OURLIBDIR/audiographer:$OURLIBDIR/timecode:$OURLIBDIR/taglib:$OURLIBDIR/libltc:$OURLIBDIR/qm-dsp:$OURLIBDIR/ardouralsautil:$OURLIBDIR/ptformat:$BUILD_ROOT/gtk2_ardour
472
473 echo $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
474
475 checkedIdx=0
476
477 # these are dynamically loaded by NSS
478 deplibs="libfreeblpriv3.so libsoftokn3.so libnsspem.so"
479 cp -v $GTKSTACK_ROOT/lib/libsoftokn3.so $Libraries/
480 cp -v $GTKSTACK_ROOT/lib/libfreeblpriv3.so $Libraries/
481 cp -v $GTKSTACK_ROOT/lib/libnsspem.so $Libraries/
482 chrpath -r foo $Libraries/libsoftokn3.so
483 chrpath -r foo $Libraries/libfreeblpriv3.so
484 chrpath -r foo $Libraries/libnsspem.so
485
486 while [ true ] ; do
487         missing=false
488         filelist=`find $APPLIB/ -type f`
489         filelist="$APPBIN/${EXENAME}-${release_version} $filelist"
490
491         for file in $filelist  ; do
492                 if ! file $file | grep -qs ELF ; then
493                         continue
494                 fi
495
496                 # speed this up a bit by not checking things multiple times.
497                 for i in "${depCheckedList[@]}"; do
498                         if [ $i == $file ]; then
499                                 continue 2
500                         fi
501                 done
502                 depCheckedList[$checkIdx]=$file
503                 checkIdx=$(($checkIdx + 1))
504
505                 # ignore suil/qt wrappers - the plugin will pull in QT4.
506                 if echo $file | grep -qs 'libsuil_.*qt4' ; then continue; fi
507
508                 # do not include libjack, nor libwine
509                 deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | grep -v libwine.so | awk '{print $3}'`
510
511                 echo -n "."
512                 for dep in $deps ; do
513                         if test "not" = ${dep}; then
514                                 echo ""
515                                 echo "!!! ERROR !!! - Missing dependant library for $file."
516                                 echo "Searched: " $OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
517                                 echo ""
518                                 (LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file)
519                                 echo ""
520                                 echo "!!! ERROR !!! - See Above"
521                                 exit 1
522                         fi
523
524                         # don't use anything mapped at a specific address
525                         if echo $dep | grep -qs '0x' ; then continue; fi
526                         # don't include /lib
527                         if echo $dep | grep -qs "^/lib/" ; then continue; fi
528                         # don't include jack
529                         if echo $dep | grep -qs libjack ; then continue; fi
530                         # don't include ALSA
531                         if echo $dep | grep -qs libasound ; then continue; fi
532                         # don't include any X Window libraries
533                         if echo $dep | grep -qs libX\. ; then continue; fi
534                         if echo $dep | grep -qs libxcb ; then continue; fi
535                         if echo $dep | grep -qs libICE\. ; then continue; fi
536                         if echo $dep | grep -qs libSM\. ; then continue; fi
537                         # don't include libc
538                         if echo $dep | grep -qs 'libc\.' ; then continue; fi
539                         # don't include libstdc++
540                         if echo $dep | grep -qs libstdc++ ; then continue; fi
541                         # don't include libdbus
542                         if echo $dep | grep -qs libdbus ; then continue; fi
543
544                         base=`basename $dep`
545                         if ! test -f $Libraries/$base; then
546                                 parent=$(basename ${file})
547                                 if echo $dep | grep -sq '^libs' ; then
548                                         echo "Copying dependant lib $BUILD_ROOT/$dep    (required by ${parent})"
549                                         cp $BUILD_ROOT/$dep $Libraries
550                                 else
551                                         echo "Copying dependant lib $dep    (required by ${parent})"
552                                         cp $dep $Libraries
553                                 fi
554                                 #
555                                 # reset RPATH so that the runtime linker never looks
556                                 # in places we don't want it to
557                                 #
558                                 chrpath -r foo $Libraries/`basename $dep`
559                                 if echo $dep | grep -sq '^/' ; then
560                                     # absolute path, candidate for stripping
561                                     deplibs="$deplibs $base"
562                                 fi
563                                 missing=true
564                         fi
565                 done
566         done
567         if test x$missing = xfalse ; then
568                 # everything has been found
569                 break
570         fi
571 done
572 echo
573
574 # strip libraries
575 if test x$STRIP = xall ; then
576     echo Stripping all libraries
577     # Must be writable so that we can strip
578     find $APPLIB/ -name "*.so*" -print0 | xargs -0 chmod u+w
579     # and strip ...
580     find $APPLIB/ -name "*.so*" -print0 | xargs -0 strip -s
581 elif test x$STRIP = xsome ; then
582     echo Stripping dependent libraries
583     for l in $deplibs ; do
584         if echo "$l" | grep -qE "$NOSTRIP"; then
585             continue
586         fi
587         chmod u+w $APPLIB/$l
588         strip -s $APPLIB/$l
589     done
590 fi
591 find $APPLIB/ -name "*.so*" -print0 | xargs -0 chmod a+rx
592
593 echo "Copying other stuff to $APPDIR  ..."
594
595 # these are all generated by waf
596 cp $BUILD_ROOT/gtk2_ardour/ardour.keys  $Etc
597 cp $BUILD_ROOT/gtk2_ardour/ardour.menus $Etc
598 cp $BUILD_ROOT/gtk2_ardour/clearlooks.rc $Etc
599 cp $BUILD_ROOT/gtk2_ardour/default_ui_config $Etc
600
601 # Copied directly from source tree
602
603 mkdir ${Shared}/icons
604 mkdir ${Shared}/resources
605 cp ../../system_config $Etc/system_config
606 cp ../../instant.xml $Shared/instant.xml
607 cp ../../gtk2_ardour/icons/*.png ${Shared}/icons
608 cp -r ../../gtk2_ardour/icons/cursor_* ${Shared}/icons/
609 cp ../../gtk2_ardour/ArdourMono.ttf $Shared
610 cp ../../gtk2_ardour/resources/${APPNAME}-* ${Shared}/resources/
611
612 # Themes: only install those named for this app
613 lower_case_appname=`echo $APPNAME | tr '[:upper:]' '[:lower:]'`
614 cp ../../gtk2_ardour/themes/*-${lower_case_appname}.colors $Themes
615
616 #
617 # put sooper sekrit ingredients here and they will be copied
618 #
619
620 if [ -d specialSauce ] ; then
621         cp -r specialSauce $Etc
622 fi
623
624 # install bundled LV2s to <app>/lib/LV2/
625 cp -R $BUILD_ROOT/libs/LV2 $APPLIB/
626
627 # lv2 core, classifications etc - TODO check if we need the complete LV2 ontology
628 if test -d $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
629         mkdir -p $APPLIB/LV2/lv2core.lv2
630         cp -R $ARDOURSTACK_ROOT/lib/lv2/lv2core.lv2/*.ttl $APPLIB/LV2/lv2core.lv2/
631 elif test -d $GTKSTACK_ROOT/lib/lv2/lv2core.lv2 ; then
632         mkdir -p $APPLIB/LV2/lv2core.lv2
633         cp -R $GTKSTACK_ROOT/lib/lv2/lv2core.lv2/*.ttl $APPLIB/LV2/lv2core.lv2/
634 fi
635
636 # go through and recursively remove any .svn dirs in the bundle
637 for svndir in `find $APPDIR -name .svn -type d`; do
638         rm -rf $svndir
639 done
640
641
642 ################################################################################
643 ### Mixbus plugins, etc
644 if test x$WITH_HARRISON_LV2 != x ; then
645         echo "Adding Harrison LV2s"
646         mkdir -p $APPLIB/LV2
647
648         curl -s -S --fail -# \
649                 -z "${CACHEDIR}/harrison_lv2s.${HARCH}.zip" \
650                 -o "${CACHEDIR}/harrison_lv2s.${HARCH}.zip" \
651                 "http://www.harrisonconsoles.com/mixbus/mb3/beta/harrison-dsp/harrison_lv2s.${HARCH}.zip"
652         unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/harrison_lv2s.${HARCH}.zip"
653 fi
654
655 if test -n "$MIXBUS"; then
656         echo "Adding Mixbus Channelstrip"
657
658         mkdir -p $APPLIB/ladspa/strip/
659         curl -s -S --fail -# \
660                 -z "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${HARCH}.so" \
661                 -o "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${HARCH}.so" \
662                 "http://www.harrisonconsoles.com/mixbus/mb3/beta/harrison-dsp/${HARRISONCHANNELSTRIP}.${HARCH}.so"
663
664         cp "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${HARCH}.so" \
665                 $APPLIB/ladspa/strip/${HARRISONCHANNELSTRIP}.so
666         chmod +x $APPLIB/ladspa/strip/${HARRISONCHANNELSTRIP}.so
667
668         echo "Adding Harrison Vamp Plugins"
669
670         if test "$GCC5ABI" = "true"; then
671                 VAMPARCH="${HARCH}gcc5"
672         else
673                 VAMPARCH="${HARCH}"
674         fi
675         curl -s -S --fail -# \
676                 -z "${CACHEDIR}/harrison_vamp.${VAMPARCH}.so" \
677                 -o "${CACHEDIR}/harrison_vamp.${VAMPARCH}.so" \
678                 "http://www.harrisonconsoles.com/mixbus/mb3/beta/harrison-dsp/harrison_vamp.${VAMPARCH}.so"
679
680         cp "${CACHEDIR}/harrison_vamp.${VAMPARCH}.so" \
681                 $APPLIB/harrison_vamp.so
682         chmod +x $APPLIB/harrison_vamp.so
683 fi
684
685 if test x$WITH_X42_LV2 != x ; then
686         mkdir -p $APPLIB/LV2
687
688         echo "Adding x42 Plugins"
689
690         for proj in x42-meters x42-midifilter x42-midimap x42-stereoroute x42-eq setBfree; do
691                 X42_VERSION=$(curl -s -S http://x42-plugins.com/x42/linux/${proj}.latest.txt)
692                 rsync -a -q --partial \
693                         rsync://x42-plugins.com/x42/linux/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip \
694                         "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
695                 unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
696         done
697 fi
698 ################################################################################
699
700
701 if test x$WITH_HARVID != x ; then
702         cd $APPBIN
703         HARVID_VERSION=$(curl -s -S http://ardour.org/files/video-tools/harvid_version.txt)
704         XJADEO_VERSION=$(curl -s -S http://ardour.org/files/video-tools/xjadeo_version.txt)
705
706         rsync -Pa \
707                 rsync://ardour.org/video-tools/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \
708                 "$CACHEDIR/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz"
709
710         rsync -Pa \
711                 rsync://ardour.org/video-tools/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz \
712                 "$CACHEDIR/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz"
713
714         tar -x -z \
715                 --exclude=README --exclude=harvid.1 --strip-components=1 \
716                 -f "$CACHEDIR/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz" || exit 1
717
718         tar -x -z \
719                 --exclude=README --exclude=xjadeo.1 --strip-components=1 \
720                 -f "$CACHEDIR/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz" || exit 1
721         mv xjadeo xjremote
722         cd -
723 fi
724
725 #
726 # Add the uninstaller
727 #
728 sed -e "s/%REPLACE_PGM%/${APPNAME}/" -e "s/%REPLACE_VENDOR%/${VENDOR}/" -e "s/%REPLACE_MAJOR_VERSION%/${major_version}/" -e "s/%REPLACE_VERSION%/${release_version}/" -e "s/%REPLACE_TYPE%/${BUILDTYPE}/" < uninstall.sh.in > $APPBIN/${APP_VER_NAME}.uninstall.sh
729 chmod a+x $APPBIN/${APP_VER_NAME}.uninstall.sh
730
731 #
732 # Add the stage2.run script
733 #
734 sed -e "s/%REPLACE_MAJOR_VERSION%/${major_version}/;s/%REPLACE_PGM%/${APPNAME}/;s/%REPLACE_VENDOR%/${VENDOR}/;s/%REPLACE_EXE%/${EXENAME}/;s/%REPLACE_GCC5%/${GCC5ABI}/;s/%REPLACE_WINE%/${USEWINE}/" < stage2.run.in > stage2.run
735 chmod a+x stage2.run
736
737
738 #Sanity Check file
739 if [ -e $BUILD_ROOT/tools/sanity_check/sanityCheck ]; then
740         cp $BUILD_ROOT/tools/sanity_check/sanityCheck $APPBIN
741 else
742         echo "!!!ERROR !!! sanityCheck program is missing. packager will exit without being complete"
743         exit 1
744 fi
745
746 echo "Building tarball ..."
747
748 rm -f $APPDIR.tar
749 tar -cf $APPDIR.tar $APPDIR
750
751 echo "Calculating bundle size"
752 du -sb $APPDIR/  | awk '{print $1}' > $APPDIR.size
753
754 ( cd $APPDIR ; find . ) > file_list.txt
755
756 rm -rf $APPDIR/
757
758 echo "Done."
759