Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Modules/package/buildpkg.sh

  • Property svn:executable set to *
1#!/bin/bash
2
3# $1 Path to store built package
4
5packagesidentity="org.chameleon"
6packagename="Chameleon"
7pkgroot="${0%/*}"
8chamTemp="usr/local/chamTemp"
9
10COL_BLACK="\x1b[30;01m"
11COL_RED="\x1b[31;01m"
12COL_GREEN="\x1b[32;01m"
13COL_YELLOW="\x1b[33;01m"
14COL_MAGENTA="\x1b[35;01m"
15COL_CYAN="\x1b[36;01m"
16COL_WHITE="\x1b[37;01m"
17COL_BLUE="\x1b[34;01m"
18COL_RESET="\x1b[39;49;00m"
19
20version=$( cat version )
21stage=${version##*-}
22revision=$( grep I386BOOT_CHAMELEONREVISION vers.h | awk '{ print $3 }' | tr -d '\"' )
23builddate=$( grep I386BOOT_BUILDDATE vers.h | awk '{ print $3,$4 }' | tr -d '\"' )
24timestamp=$( date -j -f "%Y-%m-%d %H:%M:%S" "${builddate}" "+%s" )
25
26# =================
27
28develop=$(awk "NR==6{print;exit}" ${pkgroot}/../CREDITS)
29credits=$(awk "NR==10{print;exit}" ${pkgroot}/../CREDITS)
30pkgdev=$(awk "NR==14{print;exit}" ${pkgroot}/../CREDITS)
31
32# =================
33
34distributioncount=0
35xmlindent=0
36
37indent[0]="\t"
38indent[1]="\t\t"
39indent[2]="\t\t\t"
40indent[3]="\t\t\t\t"
41
42main ()
43{
44
45# clean up the destination path
46
47rm -R -f "${1}"
48echo ""
49echo -e $COL_CYAN"----------------------------------"$COL_RESET
50echo -e $COL_CYAN"Building $packagename Install Package"$COL_RESET
51echo -e $COL_CYAN"----------------------------------"$COL_RESET
52echo ""
53
54outline[$((outlinecount++))]="${indent[$xmlindent]}<choices-outline>"
55
56# build pre install package
57echo "================= Preinstall ================="
58((xmlindent++))
59packagesidentity="org.chameleon"
60mkdir -p ${1}/Pre/Root
61mkdir -p ${1}/Pre/Scripts
62ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/Pre/Scripts/Resources/revision
63ditto --noextattr --noqtn ${1%/*/*}/version ${1}/Pre/Scripts/Resources/version
64cp -f ${pkgroot}/Scripts/Main/preinstall ${1}/Pre/Scripts
65cp -f ${pkgroot}/Scripts/Sub/InstallLog.sh ${1}/Pre/Scripts
66echo "[BUILD] Pre "
67buildpackage "${1}/Pre" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
68# End build pre install package
69
70# build core package
71echo "================= Core ================="
72packagesidentity="org.chameleon"
73mkdir -p ${1}/Core/Root/usr/local/bin
74mkdir -p ${1}/Core/Root/usr/standalone/i386
75ditto --noextattr --noqtn ${1%/*}/i386/boot ${1}/Core/Root/usr/standalone/i386
76ditto --noextattr --noqtn ${1%/*}/i386/boot0 ${1}/Core/Root/usr/standalone/i386
77ditto --noextattr --noqtn ${1%/*}/i386/boot0md ${1}/Core/Root/usr/standalone/i386
78ditto --noextattr --noqtn ${1%/*}/i386/boot1f32 ${1}/Core/Root/usr/standalone/i386
79ditto --noextattr --noqtn ${1%/*}/i386/boot1h ${1}/Core/Root/usr/standalone/i386
80ditto --noextattr --noqtn ${1%/*}/i386/boot1he ${1}/Core/Root/usr/standalone/i386
81ditto --noextattr --noqtn ${1%/*}/i386/boot1hp ${1}/Core/Root/usr/standalone/i386
82ditto --noextattr --noqtn ${1%/*}/i386/cdboot ${1}/Core/Root/usr/standalone/i386
83ditto --noextattr --noqtn ${1%/*}/i386/chain0 ${1}/Core/Root/usr/standalone/i386
84ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Core/Root/usr/local/bin
85ditto --noextattr --noqtn ${1%/*}/i386/bdmesg ${1}/Core/Root/usr/local/bin
86local coresize=$( du -hkc "${1}/Core/Root" | tail -n1 | awk {'print $1'} )
87echo "[BUILD] i386 "
88buildpackage "${1}/Core" "/" "0" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
89# End build core package
90
91# build Chameleon package
92echo "================= Chameleon ================="
93outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"Chameleon\">"
94choices[$((choicescount++))]="\t<choice\n\t\tid=\"Chameleon\"\n\t\ttitle=\"Chameleon_title\"\n\t\tdescription=\"Chameleon_description\">\n\t</choice>\n"
95((xmlindent++))
96
97# build standard package
98mkdir -p ${1}/Standard/Root
99mkdir -p ${1}/Standard/Scripts/Resources
100cp -f ${pkgroot}/Scripts/Main/Standardpostinstall ${1}/Standard/Scripts/postinstall
101cp -f ${pkgroot}/Scripts/Sub/* ${1}/Standard/Scripts
102ditto --arch i386 `which SetFile` ${1}/Standard/Scripts/Resources/SetFile
103echo "[BUILD] Standard "
104 buildpackage "${1}/Standard" "/" "${coresize}" "start_enabled=\"true\" selected=\"exclusive(choices['EFI']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
105# End build standard package
106
107# build efi package
108mkdir -p ${1}/EFI/Root
109mkdir -p ${1}/EFI/Scripts/Resources
110cp -f ${pkgroot}/Scripts/Main/ESPpostinstall ${1}/EFI/Scripts/postinstall
111cp -f ${pkgroot}/Scripts/Sub/* ${1}/EFI/Scripts
112ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Resources/SetFile
113echo "[BUILD] EFI "
114buildpackage "${1}/EFI" "/" "${coresize}" "start_visible=\"systemHasGPT()\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
115# End build efi package
116
117# build reset choice package
118mkdir -p ${1}/noboot/Root
119echo "[BUILD] Reset choice "
120buildpackage "${1}/noboot" "/$chamTemp" "" "selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['EFI'])\"" >/dev/null 2>&1
121# End build reset choice package
122
123 ((xmlindent--))
124 outline[$((outlinecount++))]="${indent[$xmlindent]}</line>"
125# End build Chameleon package
126
127# build Modules package
128echo "================= Modules ================="
129###############################
130# Supported Modules #
131###############################
132# AMDGraphicsEnabler.dylib #
133# ATiGraphicsEnabler.dylib #
134# IntelGraphicsEnabler.dylib #
135# klibc.dylib #
136# NVIDIAGraphicsEnabler.dylib #
137# Resolution.dylib #
138# uClibcxx.dylib #
139# Keylayout.dylib #
140###############################
141if [ "$(ls -A "${1%/*}/i386/modules")" ]; then
142{
143outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"Module\">"
144choices[$((choicescount++))]="\t<choice\n\t\tid=\"Module\"\n\t\ttitle=\"Module_title\"\n\t\tdescription=\"Module_description\">\n\t</choice>\n"
145((xmlindent++))
146packagesidentity="org.chameleon.modules"
147# -
148if [ -e ${1%/*}/i386/modules/klibc.dylib ]; then
149{
150mkdir -p ${1}/klibc/Root
151ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/klibc/Root
152echo "[BUILD] klibc "
153buildpackage "${1}/klibc" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
154}
155fi
156# -
157if [ -e ${1%/*}/i386/modules/uClibcxx.dylib ]; then
158{
159mkdir -p ${1}/uClibc/Root
160ditto --noextattr --noqtn ${1%/*}/i386/modules/uClibcxx.dylib ${1}/uClibc/Root
161ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/uClibc/Root
162echo "[BUILD] uClibc++ "
163buildpackage "${1}/uClibc" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
164}
165fi
166# -
167if [ -e ${1%/*}/i386/modules/Resolution.dylib ]; then
168{
169mkdir -p ${1}/AutoReso/Root
170ditto --noextattr --noqtn ${1%/*}/i386/modules/Resolution.dylib ${1}/AutoReso/Root
171echo "[BUILD] Resolution "
172buildpackage "${1}/AutoReso" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
173}
174fi
175# -
176if [ -e ${1%/*}/i386/modules/Keylayout.dylib ]; then
177{
178mkdir -p ${1}/Keylayout/Root
179ditto --noextattr --noqtn ${1%/*}/i386/modules/Keylayout.dylib ${1}/Keylayout/Root
180echo "[BUILD] Keylayout "
181buildpackage "${1}/Keylayout" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
182}
183fi
184# -
185if [ -e ${1%/*}/i386/modules/AMDGraphicsEnabler.dylib ]; then
186{
187mkdir -p ${1}/AMDGraphicsEnabler/Root
188ditto --noextattr --noqtn ${1%/*}/i386/modules/AMDGraphicsEnabler.dylib ${1}/AMDGraphicsEnabler/Root
189echo "[BUILD] AMDGraphicsEnabler "
190buildpackage "${1}/AMDGraphicsEnabler" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
191}
192fi
193# -
194if [ -e ${1%/*}/i386/modules/ATiGraphicsEnabler.dylib ]; then
195{
196mkdir -p ${1}/ATiGraphicsEnabler/Root
197ditto --noextattr --noqtn ${1%/*}/i386/modules/ATiGraphicsEnabler.dylib ${1}/ATiGraphicsEnabler/Root
198echo "[BUILD] ATiGraphicsEnabler "
199buildpackage "${1}/ATiGraphicsEnabler" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
200}
201fi
202# -
203if [ -e ${1%/*}/i386/modules/IntelGraphicsEnabler.dylib ]; then
204{
205mkdir -p ${1}/IntelGraphicsEnabler/Root
206ditto --noextattr --noqtn ${1%/*}/i386/modules/IntelGraphicsEnabler.dylib ${1}/IntelGraphicsEnabler/Root
207echo "[BUILD] IntelGraphicsEnabler "
208buildpackage "${1}/IntelGraphicsEnabler" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
209}
210fi
211# -
212if [ -e ${1%/*}/i386/modules/NVIDIAGraphicsEnabler.dylib ]; then
213{
214mkdir -p ${1}/NVIDIAGraphicsEnabler/Root
215ditto --noextattr --noqtn ${1%/*}/i386/modules/NVIDIAGraphicsEnabler.dylib ${1}/NVIDIAGraphicsEnabler/Root
216echo "[BUILD] NVIDIAGraphicsEnabler "
217buildpackage "${1}/NVIDIAGraphicsEnabler" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
218}
219fi
220
221((xmlindent--))
222outline[$((outlinecount++))]="${indent[$xmlindent]}</line>"
223}
224else
225{
226echo " -= no modules to include =-"
227}
228fi
229# End build Modules packages
230
231# build Extras package
232# build options packages
233
234outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"Options\">"
235choices[$((choicescount++))]="\t<choice\n\t\tid=\"Options\"\n\t\ttitle=\"Options_title\"\n\t\tdescription=\"Options_description\">\n\t</choice>\n"
236((xmlindent++))
237
238# ------------------------------------------------------
239# parse OptionalSettings folder to find files of boot options.
240# ------------------------------------------------------
241OptionalSettingsFolder="${pkgroot}/OptionalSettings"
242OptionalSettingsFiles=($( find "${OptionalSettingsFolder}" -depth 1 ! -name '.svn' ! -name '.DS_Store' ))
243
244for (( i = 0 ; i < ${#OptionalSettingsFiles[@]} ; i++ ))
245do
246
247# Take filename and Strip .txt from end and path from front
248builtOptionsList=$( echo ${OptionalSettingsFiles[$i]%.txt} )
249builtOptionsList=$( echo ${builtOptionsList##*/} )
250echo "================= $builtOptionsList ================="
251outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"${builtOptionsList}\">"
252choices[$((choicescount++))]="\t<choice\n\t\tid=\"${builtOptionsList}\"\n\t\ttitle=\"${builtOptionsList}_title\"\n\t\tdescription=\"${builtOptionsList}_description\">\n\t</choice>\n"
253((xmlindent++))
254packagesidentity="org.chameleon.options.$builtOptionsList"
255
256# ------------------------------------------------------
257# Read boot option file in to an array.
258# ------------------------------------------------------
259availableOptions=() # array to hold the list of boot options, per 'section'.
260exclusiveFlag=0 # used to indicate list has exclusive options.
261exclusiveName="" # will be appended to exclusive 'none' option name.
262count=0 # used as index for stepping through array.
263while read textLine
264do
265# ignore lines in the file beginning with a # and Exclusive=False
266if [[ ${textLine} != \#* ]] && [[ ${textLine} != "Exclusive=False" ]];then
267# check for 'Exclusive=True' option in file
268if [[ ${textLine} == "Exclusive=True" ]];then
269exclusiveFlag=1
270exclusiveName=$builtOptionsList
271else
272availableOptions[count]=$textLine
273((count++))
274fi
275fi
276done < ${OptionalSettingsFiles[$i]}
277buildoptionalsettings "$1" "${exclusiveFlag}" "${exclusiveName}"
278
279((xmlindent--))
280outline[$((outlinecount++))]="${indent[$xmlindent]}</line>"
281done
282
283# build KeyLayout options packages
284echo "================= Keymaps Options ================="
285outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"KeyLayout\">"
286choices[$((choicescount++))]="\t<choice\n\t\tid=\"KeyLayout\"\n\t\ttitle=\"KeyLayout_title\"\n\t\tdescription=\"KeyLayout_description\">\n\t</choice>\n"
287((xmlindent++))
288packagesidentity="org.chameleon.options.keylayout"
289
290# ------------------------------------------------------
291# Available Keylayout boot options are discovered by
292# reading contents of /Keymaps folder after compilation
293# ------------------------------------------------------
294availableOptions=()
295availableOptions=($( find "${1%/sym/*}/Keymaps" -type f -depth 1 -name '*.lyt' | sed 's|.*/||;s|\.lyt||' ))
296# Adjust array contents to match expected format
297# for boot options which is: name:key=value
298for (( i = 0 ; i < ${#availableOptions[@]} ; i++ ))
299do
300availableOptions[i]=${availableOptions[i]}":KeyLayout="${availableOptions[i]}
301done
302
303# to indicate exclusive option, call buildoptionalsettings with the 2nd parameter set to 1 .
304buildoptionalsettings "$1" "1" "keylayout"
305
306((xmlindent--))
307outline[$((outlinecount++))]="${indent[$xmlindent]}</line>"
308
309# End build KeyLayout options packages
310
311((xmlindent--))
312outline[$((outlinecount++))]="${indent[$xmlindent]}</line>"
313
314# End build options packages
315
316# build theme packages
317echo "================= Themes ================="
318outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"Themes\">"
319choices[$((choicescount++))]="\t<choice\n\t\tid=\"Themes\"\n\t\ttitle=\"Themes_title\"\n\t\tdescription=\"Themes_description\">\n\t</choice>\n"
320((xmlindent++))
321
322# Using themes section from Azi's/package branch.
323packagesidentity="org.chameleon.themes"
324artwork="${1%/sym/package}/artwork/themes"
325themes=($( find "${artwork}" -type d -depth 1 -not -name '.svn' ))
326for (( i = 0 ; i < ${#themes[@]} ; i++ ))
327do
328theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
329mkdir -p "${1}/${theme}/Root/"
330rsync -r --exclude=.svn "${themes[$i]}/" "${1}/${theme}/Root/${theme}"
331echo "[BUILD] ${theme}"
332buildpackage "${1}/${theme}" "/$chamTemp/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
333done
334
335((xmlindent--))
336outline[$((outlinecount++))]="${indent[$xmlindent]}</line>"
337# End build theme packages# End build Extras package
338
339# build post install package
340echo "================= Post ================="
341packagesidentity="org.chameleon"
342mkdir -p ${1}/Post/Root
343mkdir -p ${1}/Post/Scripts
344cp -f ${pkgroot}/Scripts/Main/postinstall ${1}/Post/Scripts
345cp -f ${pkgroot}/Scripts/Sub/InstallLog.sh ${1}/Post/Scripts
346cp -f ${pkgroot}/Scripts/Sub/UnMountEFIvolumes.sh ${1}/Post/Scripts
347ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/Post/Scripts/Resources/revision
348ditto --noextattr --noqtn ${1%/*/*}/version ${1}/Post/Scripts/Resources/version
349echo "[BUILD] Post "
350buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
351# End build post install package
352
353((xmlindent--))
354outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
355
356# build meta package
357
358makedistribution "${1}" "${2}" "${3}" "${4}" #"${5}"
359
360# clean up
361
362#rm -R -f "${1}"
363
364}
365
366fixperms ()
367{
368# $1 path
369find "${1}" -type f -exec chmod 644 {} \;
370find "${1}" -type d -exec chmod 755 {} \;
371chown -R 0:0 "${1}"
372}
373
374buildoptionalsettings()
375{
376# $1 Path to package to build containing Root and or Scripts
377# $2 = exclusiveFlag
378# S3 = exclusiveName
379
380# ------------------------------------------------------
381# if exclusiveFlag=1 then re-build array
382# adding extra boot option at beginning to give
383
384# ------------------------------------------------------
385if [ ${2} = "1" ]; then
386tempArray=("${availableOptions[@]}")
387availableOptions=()
388availableOptions[0]="ChooseNone-"$3":DONT=ADD"
389position=0
390totalItems="${#tempArray[@]}"
391for (( position = 0 ; position < $totalItems ; position++ ))
392do
393availableOptions[$position+1]=${tempArray[${position}]}
394done
395fi
396
397# ------------------------------------------------------
398# Loop through options in array and process each in turn
399# ------------------------------------------------------
400for (( c = 0 ; c < ${#availableOptions[@]} ; c++ ))
401do
402textLine=${availableOptions[c]}
403# split line - taking all before ':' as option name
404# and all after ':' as key/value
405optionName=${textLine%:*}
406keyValue=${textLine##*:}
407
408# create folders required for each boot option
409mkdir -p "${1}/$optionName/Root/"
410
411# create dummy file with name of key/value
412echo "" > "${1}/$optionName/Root/${keyValue}"
413
414echo "[BUILD] ${optionName} "
415
416# ------------------------------------------------------
417# Before calling buildpackage, add exclusive options
418# to buildpackage call if requested.
419# ------------------------------------------------------
420if [ $2 = "1" ]; then
421
422# Prepare individual string parts
423stringStart="selected=\""
424stringBefore="exclusive(choices['"
425stringAfter="']) &amp;&amp; "
426stringEnd="'])\""
427x=${stringStart}${stringBefore}
428
429# build string for sending to buildpackage
430totalItems="${#availableOptions[@]}"
431lastItem=$((totalItems-1))
432
433for (( r = 0 ; r < ${totalItems} ; r++ ))
434do
435textLineTemp=${availableOptions[r]}
436optionNameTemp=${textLineTemp%:*}
437if [ "${optionNameTemp}" != "${optionName}" ]; then
438 x="${x}${optionNameTemp}"
439 # Only add these to end of string up to the one before the last item
440if [ $r -lt $lastItem ]; then
441x="${x}${stringAfter}${stringBefore}"
442fi
443fi
444done
445x="${x}${stringEnd}"
446
447# First exclusive option is the 'no choice' option, so let's make that selected by default.
448if [ $c = 0 ]; then
449initialChoice="true"
450else
451initialChoice="false"
452fi
453
454buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"${initialChoice}\" ${x}" >/dev/null 2>&1
455else
456buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
457fi
458done
459}
460
461buildpackage ()
462{
463# $1 Path to package to build containing Root and or Scripts
464# $2 Install Location
465# $3 Size
466# $4 Options
467
468if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
469
470local packagename="${1##*/}"
471local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
472find "${1}" -name '.DS_Store' -delete
473local filecount=$( find "${1}/Root" | wc -l )
474if [ "${3}" ]; then
475local installedsize="${3}"
476else
477local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
478fi
479local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
480
481#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
482
483header+="identifier=\"${identifier}\" "
484header+="version=\"${version}\" "
485
486[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
487
488header+="auth=\"root\">\n"
489header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
490#rm -R -f "${1}/Temp"
491
492[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
493[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
494
495if [ -d "${1}/Scripts" ]; then
496header+="\t<scripts>\n"
497for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
498do
499header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
500done
501header+="\t</scripts>\n"
502chown -R 0:0 "${1}/Scripts"
503pushd "${1}/Scripts" >/dev/null
504find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
505popd >/dev/null
506fi
507
508header+="</pkg-info>"
509echo -e "${header}" > "${1}/Temp/PackageInfo"
510pushd "${1}/Root" >/dev/null
511find . -print | cpio -o -z -H cpio > "../Temp/Payload"
512popd >/dev/null
513pushd "${1}/Temp" >/dev/null
514
515xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
516
517popd >/dev/null
518
519outline[$((outlinecount++))]="${indent[$xmlindent]}<line choice=\"${packagename// /}\"/>"
520
521if [ "${4}" ]; then
522local choiceoptions="\t\t${4}"
523fi
524choices[$((choicescount++))]="\t<choice\n\t\tid=\"${packagename// /}\"\n\t\ttitle=\"${packagename}_title\"\n\t\tdescription=\"${packagename}_description\"\n${choiceoptions}>\n\t\t<pkg-ref id=\"${identifier}\" installKBytes='${installedsize}' version='${version}.0.0.${timestamp}' >#${packagename// /}.pkg</pkg-ref>\n\t</choice>\n"
525#rm -R -f "${1}"
526fi
527}
528
529makedistribution ()
530{
531rm -f "${1%/*}/${packagename// /}"*.pkg
532
533find "${1}" -type f -name '*.pkg' -depth 1 | while read component
534do
535mkdir -p "${1}/${packagename}/${component##*/}"
536pushd "${1}/${packagename}/${component##*/}" >/dev/null
537xar -x -f "${1%}/${component##*/}"
538popd >/dev/null
539done
540
541ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
542ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
543
544find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
545
546for (( i=0; i < ${#outline[*]} ; i++));
547do
548echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
549done
550
551for (( i=0; i < ${#choices[*]} ; i++));
552do
553echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
554done
555
556echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
557
558perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
559perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
560
561# Adding Developer and credits
562perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
563perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
564perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
565
566stage=${stage/RC/Release Candidate }
567stage=${stage/FINAL/2.0 Final}
568perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
569
570find "${1}/${packagename}" -name '.DS_Store' -delete
571pushd "${1}/${packagename}" >/dev/null
572xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
573popd >/dev/null
574
575# Here is the place for assign a Icon to the pkg
576# command use to generate the file:
577# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
578# ----
579 ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
580 DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
581 Rez -append tempicns.rsrc -o "${1%/*}/$packagename-${version}-r$revision.pkg"
582 SetFile -a C "${1%/*}/$packagename-${version}-r$revision.pkg"
583 rm -f tempicns.rsrc
584 rm -rf "${pkgroot}/Icons/Icons"
585# End
586
587md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
588echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
589echo ""
590
591echo -e $COL_GREEN"--------------------------"$COL_RESET
592echo -e $COL_GREEN"Building process complete!"$COL_RESET
593echo -e $COL_GREEN"--------------------------"$COL_RESET
594echo ""
595echo -e $COL_GREEN"Build info."
596echo -e $COL_GREEN"==========="
597echo -e $COL_BLUE"Package name:"$COL_RESET"$packagename-${version}-r$revision.pkg"
598echo -e $COL_BLUE"MD5:"$COL_RESET"$md5"
599echo -e $COL_BLUE"Version:"$COL_RESET"$version"
600echo -e $COL_BLUE"Stage:"$COL_RESET"$stage"
601echo -e $COL_BLUE"Date/Time:"$COL_RESET"$builddate"
602echo ""
603
604}
605
606main "${1}" "${2}" "${3}" "${4}" #"${5}"
607
608

Archive Download this file

Revision: 1651