Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 1506