Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/package/buildpkg.sh

  • Property svn:executable set to *
1#!/bin/bash
2
3# $1 Path to store built package
4
5packagesidentity="org.chameleon"
6
7packagename="Chameleon"
8
9pkgroot="${0%/*}"
10
11COL_BLACK="\x1b[30;01m"
12COL_RED="\x1b[31;01m"
13COL_GREEN="\x1b[32;01m"
14COL_YELLOW="\x1b[33;01m"
15COL_MAGENTA="\x1b[35;01m"
16COL_CYAN="\x1b[36;01m"
17COL_WHITE="\x1b[37;01m"
18COL_BLUE="\x1b[34;01m"
19COL_RESET="\x1b[39;49;00m"
20
21#version=$( grep I386BOOT_CHAMELEONVERSION sym/i386/vers.h | awk '{ print $3 }' | tr -d '\"' )
22version=$( cat version )
23stage=${version##*-}
24revision=$( grep I386BOOT_CHAMELEONREVISION sym/i386/vers.h | awk '{ print $3 }' | tr -d '\"' )
25builddate=$( grep I386BOOT_BUILDDATE sym/i386/vers.h | awk '{ print $3,$4 }' | tr -d '\"' )
26timestamp=$( date -j -f "%Y-%m-%d %H:%M:%S" "${builddate}" "+%s" )
27
28# =================
29
30develop=$(awk "NR==6{print;exit}" ${pkgroot}/../CREDITS)
31credits=$(awk "NR==10{print;exit}" ${pkgroot}/../CREDITS)
32pkgdev=$(awk "NR==14{print;exit}" ${pkgroot}/../CREDITS)
33# =================
34
35distributioncount=0
36xmlindent=0
37
38indent[0]="\t"
39indent[1]="\t\t"
40indent[2]="\t\t\t"
41indent[3]="\t\t\t\t"
42
43main ()
44{
45
46# clean up the destination path
47
48rm -R -f "${1}"
49echo ""
50echo -e $COL_BLACK"----------------------------------"$COL_RESET
51echo -e $COL_BLACK"Building $packagename Install Package"$COL_RESET
52echo -e $COL_BLACK"----------------------------------"$COL_RESET
53echo ""
54
55outline[$((outlinecount++))]="${indent[$xmlindent]}<choices-outline>"
56
57# build core package
58echo "================= Core ================="
59((xmlindent++))
60packagesidentity="org.chameleon.core"
61mkdir -p ${1}/Core/Root/usr/sbin
62mkdir -p ${1}/Core/Root/usr/local/bin
63mkdir -p ${1}/Core/Root/usr/standalone/i386
64ditto --noextattr --noqtn ${1%/*}/i386/boot ${1}/Core/Root/usr/standalone/i386
65ditto --noextattr --noqtn ${1%/*}/i386/boot0 ${1}/Core/Root/usr/standalone/i386
66ditto --noextattr --noqtn ${1%/*}/i386/boot0md ${1}/Core/Root/usr/standalone/i386
67#ditto --noextattr --noqtn ${1%/*}/i386/boot0hf ${1}/Core/Root/usr/standalone/i386
68ditto --noextattr --noqtn ${1%/*}/i386/boot1f32 ${1}/Core/Root/usr/standalone/i386
69ditto --noextattr --noqtn ${1%/*}/i386/boot1h ${1}/Core/Root/usr/standalone/i386
70ditto --noextattr --noqtn ${1%/*}/i386/boot1he ${1}/Core/Root/usr/standalone/i386
71ditto --noextattr --noqtn ${1%/*}/i386/boot1hp ${1}/Core/Root/usr/standalone/i386
72ditto --noextattr --noqtn ${1%/*}/i386/cdboot ${1}/Core/Root/usr/standalone/i386
73ditto --noextattr --noqtn ${1%/*}/i386/chain0 ${1}/Core/Root/usr/standalone/i386
74# fixperms "${1}/Core/Root/"
75ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Core/Root/usr/sbin
76ditto --noextattr --noqtn ${1%/*}/i386/bdmesg ${1}/Core/Root/usr/sbin
77local coresize=$( du -hkc "${1}/Core/Root" | tail -n1 | awk {'print $1'} )
78echo "[BUILD] i386 "
79buildpackage "${1}/Core" "/" "0" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
80
81# build Chameleon package
82echo "================= Chameleon ================="
83outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Chameleon\">"
84choices[$((choicescount++))]="<choice\n\tid=\"Chameleon\"\n\ttitle=\"Chameleon_title\"\n\tdescription=\"Chameleon_description\"\n>\n</choice>\n"
85
86# build standard package
87mkdir -p ${1}/Standard/Root
88mkdir -p ${1}/Standard/Scripts/Tools
89cp -f ${pkgroot}/Scripts/Standard/* ${1}/Standard/Scripts
90# ditto --arch i386 `which SetFile` ${1}/Standard/Scripts/Tools/SetFile
91echo "[BUILD] Standard "
92buildpackage "${1}/Standard" "/" "${coresize}" "start_enabled=\"true\" start_selected=\"upgrade_allowed()\" selected=\"exclusive(choices['EFI']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
93# End build standard package
94
95# build efi package
96mkdir -p ${1}/EFI/Root
97mkdir -p ${1}/EFI/Scripts/Tools
98cp -f ${pkgroot}/Scripts/EFI/* ${1}/EFI/Scripts
99# ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Tools/SetFile
100echo "[BUILD] EFI "
101buildpackage "${1}/EFI" "/" "${coresize}" "start_visible=\"systemHasGPT()\" start_selected=\"false\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
102# End build efi package
103
104# build reset choice package
105mkdir -p ${1}/noboot/Root
106echo "[BUILD] Reset choice "
107buildpackage "${1}/noboot" "/tmpcham" "" "start_visible=\"true\" start_selected=\"false\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['EFI'])\"" >/dev/null 2>&1
108# End build reset choice package
109
110# build Modules package
111 echo "================= Modules ================="
112 ###############################
113 # Supported Modules #
114 ###############################
115 # AMDGraphicsEnabler.dylib #
116 # ATiGraphicsEnabler.dylib #
117 # IntelGraphicsEnabler.dylib #
118 # klibc.dylib #
119 # NVIDIAGraphicsEnabler.dylib #
120 # Resolution.dylib #
121 # uClibcxx.dylib #
122 ###############################
123 if [ "$(ls -A "${1%/*}/i386/modules")" ]; then
124 {
125 outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Module\">"
126 choices[$((choicescount++))]="<choice\n\tid=\"Module\"\n\ttitle=\"Module_title\"\n\tdescription=\"Module_description\"\n>\n</choice>\n"
127 ((xmlindent++))
128 packagesidentity="org.chameleon.modules"
129# -
130 if [ -e ${1%/*}/i386/modules/AMDGraphicsEnabler.dylib ]; then
131 {
132 mkdir -p ${1}/AMDGraphicsEnabler/Root
133 ditto --noextattr --noqtn ${1%/*}/i386/modules/AMDGraphicsEnabler.dylib ${1}/AMDGraphicsEnabler/Root
134 echo "[BUILD] AMDGraphicsEnabler "
135 buildpackage "${1}/AMDGraphicsEnabler" "/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
136 }
137 fi
138# -
139 if [ -e ${1%/*}/i386/modules/ATiGraphicsEnabler.dylib ]; then
140 {
141 mkdir -p ${1}/ATiGraphicsEnabler/Root
142 ditto --noextattr --noqtn ${1%/*}/i386/modules/ATiGraphicsEnabler.dylib ${1}/ATiGraphicsEnabler/Root
143 echo "[BUILD] ATiGraphicsEnabler "
144 buildpackage "${1}/ATiGraphicsEnabler" "/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
145 }
146 fi
147# -
148 if [ -e ${1%/*}/i386/modules/IntelGraphicsEnabler.dylib ]; then
149 {
150 mkdir -p ${1}/IntelGraphicsEnabler/Root
151 ditto --noextattr --noqtn ${1%/*}/i386/modules/IntelGraphicsEnabler.dylib ${1}/IntelGraphicsEnabler/Root
152 echo "[BUILD] IntelGraphicsEnabler "
153 buildpackage "${1}/IntelGraphicsEnabler" "/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
154 }
155 fi
156# -
157 if [ -e ${1%/*}/i386/modules/klibc.dylib ]; then
158 {
159 mkdir -p ${1}/klibc/Root
160 ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/klibc/Root
161 echo "[BUILD] klibc "
162 buildpackage "${1}/klibc" "/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
163 }
164 fi
165# -
166 if [ -e ${1%/*}/i386/modules/NVIDIAGraphicsEnabler.dylib ]; then
167 {
168 mkdir -p ${1}/NVIDIAGraphicsEnabler/Root
169 ditto --noextattr --noqtn ${1%/*}/i386/modules/NVIDIAGraphicsEnabler.dylib ${1}/NVIDIAGraphicsEnabler/Root
170 echo "[BUILD] NVIDIAGraphicsEnabler "
171 buildpackage "${1}/NVIDIAGraphicsEnabler" "/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
172 }
173 fi
174# -
175 if [ -e ${1%/*}/i386/modules/Resolution.dylib ]; then
176 {
177 mkdir -p ${1}/AutoReso/Root
178 ditto --noextattr --noqtn ${1%/*}/i386/modules/Resolution.dylib ${1}/AutoReso/Root
179 echo "[BUILD] Resolution "
180 buildpackage "${1}/AutoReso" "/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
181 }
182 fi
183# -
184 if [ -e ${1%/*}/i386/modules/uClibcxx.dylib ]; then
185 {
186 mkdir -p ${1}/uClibc/Root
187 ditto --noextattr --noqtn ${1%/*}/i386/modules/uClibcxx.dylib ${1}/uClibc/Root
188 ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/uClibc/Root
189 echo "[BUILD] uClibc++ "
190 buildpackage "${1}/uClibc" "/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
191 }
192 fi
193 ((xmlindent--))
194 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
195 }
196 else
197 {
198 echo " -= no modules to include =-"
199 }
200 fi
201# End build Modules packages
202 ((xmlindent--))
203 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
204# End build Chameleon package
205
206# build Extras package
207echo "================= Extras ================="
208outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Extras\">"
209choices[$((choicescount++))]="<choice\n\tid=\"Extras\"\n\ttitle=\"Extras_title\"\n\tdescription=\"Extras_description\"\n>\n</choice>\n"
210((xmlindent++))
211packagesidentity="org.chameleon.extras"
212
213# build utility package
214outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Utility\">"
215choices[$((choicescount++))]="<choice\n\tid=\"Utility\"\n\ttitle=\"Utility_title\"\n\tdescription=\"Utility_description\"\n>\n</choice>\n"
216((xmlindent++))
217packagesidentity="org.chameleon.utilities"
218
219# build package for Chameleon PrefPanel
220mkdir -p "${1}/PrefPanel/Root"
221ditto --noextattr --noqtn "${pkgroot}/Configuration/PrefPanel/Chameleon.prefPane" "${1}/PrefPanel/Root"
222echo "[BUILD] Chameleon Preference Panel "
223buildpackage "${1}/PrefPanel" "/Library/PreferencePanes/Chameleon.prefPane" "" "start_selected=\"false\"" >/dev/null 2>&1
224# End build package for Chameleon PrefPanel
225
226# build package for SMBIOSDefault
227mkdir -p "${1}/SMBIOSDefault/Root"
228ditto --noextattr --noqtn "${pkgroot}/Configuration/SMBIOSDefault/smbios.plist" "${1}/SMBIOSDefault/Root"
229echo "[BUILD] SMBIOSDefault "
230buildpackage "${1}/SMBIOSDefault" "/Extra/Example" "" "start_selected=\"false\"" >/dev/null 2>&1
231# End build package for SMBIOSDefault
232
233# build package for Documentation
234mkdir -p "${1}/Documentation/Root"
235cp -f ${pkgroot}/../doc/BootHelp.txt ${1}/Documentation/Root
236cp -f ${pkgroot}/../doc/README ${1}/Documentation/Root
237cp -f ${pkgroot}/../doc/Users_Guide0.5.pdf ${1}/Documentation/Root
238echo "[BUILD] Documentation "
239buildpackage "${1}/Documentation" "/Library/Documentation/Chameleon2" "" "start_selected=\"false\"" >/dev/null 2>&1
240# End build package for Documentation
241
242((xmlindent--))
243outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
244# End utility package
245
246# build options packages
247echo "================= Options ================="
248outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Options\">"
249choices[$((choicescount++))]="<choice\n\tid=\"Options\"\n\ttitle=\"Options_title\"\n\tdescription=\"Options_description\"\n>\n</choice>\n"
250((xmlindent++))
251
252# build base options packages
253packagesidentity="org.chameleon.options"
254
255options=($( find "${pkgroot}/Scripts/BaseOptions" -type d -depth 1 -not -name '.svn' ))
256for (( i = 0 ; i < ${#options[@]} ; i++ ))
257do
258mkdir -p "${1}/${options[$i]##*/}/Root"
259mkdir -p "${1}/${options[$i]##*/}/Scripts"
260ditto --noextattr --noqtn "${options[$i]}/postinstall" "${1}/${options[$i]##*/}/Scripts/postinstall"
261echo "[BUILD] ${options[$i]##*/} "
262buildpackage "${1}/${options[$i]##*/}" "/" "" "start_selected=\"false\"" >/dev/null 2>&1
263done
264# End build base options packages
265
266# build resolution packages
267echo "================= Res. Options ================="
268outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Resolution\">"
269choices[$((choicescount++))]="<choice\n\tid=\"Resolution\"\n\ttitle=\"Resolution_title\"\n\tdescription=\"Resolution_description\"\n>\n</choice>\n"
270((xmlindent++))
271packagesidentity="org.chameleon.options.resolution"
272resolutions=($( find "${pkgroot}/Scripts/Resolutions" -type d -depth 1 -not -name '.svn' ))
273for (( i = 0 ; i < ${#resolutions[@]} ; i++ ))
274do
275mkdir -p "${1}/${resolutions[$i]##*/}/Root/"
276mkdir -p "${1}/${resolutions[$i]##*/}/Scripts/"
277ditto --noextattr --noqtn "${resolutions[$i]}/postinstall" "${1}/${resolutions[$i]##*/}/Scripts/postinstall"
278echo "[BUILD] ${resolutions[$i]##*/} "
279buildpackage "${1}/${resolutions[$i]##*/}" "/tmpcham" "" "start_selected=\"false\"" >/dev/null 2>&1
280done
281
282((xmlindent--))
283outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
284# End build resolution packages
285
286# build Advanced packages
287echo "================= Adv. Options ================="
288outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Advanced\">"
289choices[$((choicescount++))]="<choice\n\tid=\"Advanced\"\n\ttitle=\"Advanced_title\"\n\tdescription=\"Advanced_description\"\n>\n</choice>\n"
290((xmlindent++))
291
292packagesidentity="org.chameleon.options.advanced"
293optionsadv=($( find "${pkgroot}/Scripts/Advanced" -type d -depth 1 -not -name '.svn' ))
294for (( i = 0 ; i < ${#optionsadv[@]} ; i++ ))
295do
296mkdir -p "${1}/${optionsadv[$i]##*/}/Root"
297mkdir -p "${1}/${optionsadv[$i]##*/}/Scripts"
298ditto --noextattr --noqtn "${optionsadv[$i]}/postinstall" "${1}/${optionsadv[$i]##*/}/Scripts/postinstall"
299echo "[BUILD] ${optionsadv[$i]##*/} "
300buildpackage "${1}/${optionsadv[$i]##*/}" "/" "" "start_selected=\"false\"" >/dev/null 2>&1
301done
302
303((xmlindent--))
304outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
305# End build Advanced packages
306
307((xmlindent--))
308outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
309
310# End build options packages
311
312# build theme packages
313echo "================= Themes ================="
314outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Themes\">"
315choices[$((choicescount++))]="<choice\n\tid=\"Themes\"\n\ttitle=\"Themes_title\"\n\tdescription=\"Themes_description\"\n>\n</choice>\n"
316((xmlindent++))
317packagesidentity="org.chameleon.themes"
318artwork="${1%/*}"
319themes=($( find "${artwork%/*}/artwork/themes" -type d -depth 1 -not -name '.svn' ))
320for (( i = 0 ; i < ${#themes[@]} ; i++ ))
321do
322theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
323mkdir -p "${1}/${theme}/Root/"
324 rsync -r --exclude=.svn "${themes[$i]}" "${1}/${themes[$i]##*/}/Root/${theme}"
325 # #### Comment out thx meklort
326 # ditto --noextattr --noqtn "${themes[$i]}" "${1}/${themes[$i]##*/}/Root/${theme}"
327 # ####
328 find "${1}/${themes[$i]##*/}" -name '.DS_Store' -or -name '.svn' -exec rm -R {} \+
329find "${1}/${themes[$i]##*/}" -type f -exec chmod 644 {} \+
330echo "[BUILD] ${themes[$i]##*/} "
331buildpackage "${1}/${theme}" "/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
332rm -R -f "${1}/${i##*/}"
333done
334
335((xmlindent--))
336outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
337# End build theme packages
338
339((xmlindent--))
340outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
341# End build Extras package
342
343# build post install package
344echo "================= Post ================="
345mkdir -p ${1}/Post/Root
346mkdir -p ${1}/Post/Scripts
347cp -f ${pkgroot}/Scripts/Post/* ${1}/Post/Scripts
348echo "[BUILD] Post "
349buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
350outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
351
352# build meta package
353
354makedistribution "${1}" "${2}" "${3}" "${4}" "${5}"
355
356# clean up
357
358rm -R -f "${1}"
359
360}
361
362fixperms ()
363{
364# $1 path
365find "${1}" -type f -exec chmod 644 {} \;
366find "${1}" -type d -exec chmod 755 {} \;
367chown -R 0:0 "${1}"
368}
369
370buildpackage ()
371{
372# $1 Path to package to build containing Root and or Scripts
373# $2 Install Location
374# $3 Size
375# $4 Options
376
377if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
378
379local packagename="${1##*/}"
380local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
381find "${1}" -name '.DS_Store' -delete
382local filecount=$( find "${1}/Root" | wc -l )
383if [ "${3}" ]; then
384local installedsize="${3}"
385else
386local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
387fi
388local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
389
390#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
391
392header+="identifier=\"${identifier}\" "
393header+="version=\"${version}\" "
394
395[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
396
397header+="auth=\"root\">\n"
398header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
399rm -R -f "${1}/Temp"
400
401[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
402[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
403
404if [ -d "${1}/Scripts" ]; then
405header+="\t<scripts>\n"
406for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
407do
408header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
409done
410header+="\t</scripts>\n"
411chown -R 0:0 "${1}/Scripts"
412pushd "${1}/Scripts" >/dev/null
413find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
414popd >/dev/null
415fi
416
417header+="</pkg-info>"
418echo -e "${header}" > "${1}/Temp/PackageInfo"
419pushd "${1}/Root" >/dev/null
420find . -print | cpio -o -z -H cpio > "../Temp/Payload"
421popd >/dev/null
422pushd "${1}/Temp" >/dev/null
423
424xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
425
426popd >/dev/null
427
428outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${packagename// /}\"/>"
429
430if [ "${4}" ]; then
431local choiceoptions="${indent[$xmlindent]}${4}\n"
432fi
433choices[$((choicescount++))]="<choice\n\tid=\"${packagename// /}\"\n\ttitle=\"${packagename}_title\"\n\tdescription=\"${packagename}_description\"\n${choiceoptions}>\n\t<pkg-ref id=\"${identifier}\" installKBytes='${installedsize}' version='${version}.0.0.${timestamp}' auth='root'>#${packagename// /}.pkg</pkg-ref>\n</choice>\n"
434
435rm -R -f "${1}"
436fi
437}
438
439makedistribution ()
440{
441rm -f "${1%/*}/${packagename// /}"*.pkg
442
443find "${1}" -type f -name '*.pkg' -depth 1 | while read component
444do
445mkdir -p "${1}/${packagename}/${component##*/}"
446pushd "${1}/${packagename}/${component##*/}" >/dev/null
447xar -x -f "${1%}/${component##*/}"
448popd >/dev/null
449done
450
451ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
452ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
453
454find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
455
456for (( i=0; i < ${#outline[*]} ; i++));
457do
458echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
459done
460
461for (( i=0; i < ${#choices[*]} ; i++));
462do
463echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
464done
465
466echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
467
468perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
469perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
470
471# Adding Developer and credits
472perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
473perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
474perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
475
476stage=${stage/RC/Release Candidate }
477stage=${stage/FINAL/2.0 Final}
478perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
479
480find "${1}/${packagename}" -name '.DS_Store' -delete
481pushd "${1}/${packagename}" >/dev/null
482xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
483popd >/dev/null
484
485# Here is the place for assign a Icon to the pkg
486# command use to generate the file:
487# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
488# ----
489# ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
490# DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
491# Rez -append tempicns.rsrc -o "${1%/*}/${packagename// /}-${version}-r${revision}.pkg"
492# SetFile -a C "${1%/*}/${packagename// /}-${version}-r${revision}.pkg"
493# rm -f tempicns.rsrc
494# rm -rf "${pkgroot}/Icons/Icons"
495# End
496
497md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
498echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
499echo ""
500
501echo -e $COL_BLACK"--------------------------"$COL_RESET
502echo -e $COL_BLACK"Building process complete!"$COL_RESET
503echo -e $COL_BLACK"--------------------------"$COL_RESET
504echo ""
505echo -e $COL_BLACK"Build info."
506echo -e $COL_BLACK"==========="
507echo -e $COL_BLUE"Package name:"$COL_BLACK"$packagename-${version}-r$revision.pkg"$COL_RESET
508echo -e $COL_BLUE"MD5:"$COL_BLACK"$md5"$COL_RESET
509echo -e $COL_BLUE"Version:"$COL_BLACK"$version"$COL_RESET
510echo -e $COL_BLUE"Stage:"$COL_BLACK"$stage"$COL_RESET
511echo -e $COL_BLUE"Date/Time:"$COL_BLACK"$builddate"$COL_RESET
512echo ""
513
514}
515
516main "${1}" "${2}" "${3}" "${4}" "${5}"
517
518

Archive Download this file

Revision: 1433