Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 1501