Chameleon

Chameleon Svn Source Tree

Root/branches/blackosx/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
11# blackosx to use /usr/local as a place for temporary files
12# taken from http://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard#cite_note-27
13chamTemp="usr/local/chamTemp"
14
15COL_BLACK="\x1b[30;01m"
16COL_RED="\x1b[31;01m"
17COL_GREEN="\x1b[32;01m"
18COL_YELLOW="\x1b[33;01m"
19COL_MAGENTA="\x1b[35;01m"
20COL_CYAN="\x1b[36;01m"
21COL_WHITE="\x1b[37;01m"
22COL_BLUE="\x1b[34;01m"
23COL_RESET="\x1b[39;49;00m"
24
25#version=$( grep I386BOOT_CHAMELEONVERSION vers.h | awk '{ print $3 }' | tr -d '\"' )
26version=$( cat version )
27stage=${version##*-}
28revision=$( grep I386BOOT_CHAMELEONREVISION vers.h | awk '{ print $3 }' | tr -d '\"' )
29builddate=$( grep I386BOOT_BUILDDATE vers.h | awk '{ print $3,$4 }' | tr -d '\"' )
30timestamp=$( date -j -f "%Y-%m-%d %H:%M:%S" "${builddate}" "+%s" )
31
32# =================
33
34develop=$(awk "NR==6{print;exit}" ${pkgroot}/../CREDITS)
35credits=$(awk "NR==10{print;exit}" ${pkgroot}/../CREDITS)
36pkgdev=$(awk "NR==14{print;exit}" ${pkgroot}/../CREDITS)
37# =================
38
39distributioncount=0
40xmlindent=0
41
42indent[0]="\t"
43indent[1]="\t\t"
44indent[2]="\t\t\t"
45indent[3]="\t\t\t\t"
46
47main ()
48{
49
50# clean up the destination path
51
52rm -R -f "${1}"
53echo ""
54echo -e $COL_CYAN"----------------------------------"$COL_RESET
55echo -e $COL_CYAN"Building $packagename Install Package"$COL_RESET
56echo -e $COL_CYAN"----------------------------------"$COL_RESET
57echo ""
58
59outline[$((outlinecount++))]="${indent[$xmlindent]}<choices-outline>"
60
61# build core package
62echo "================= Core ================="
63((xmlindent++))
64packagesidentity="org.chameleon.core"
65mkdir -p ${1}/Core/Root/usr/local/bin
66mkdir -p ${1}/Core/Root/usr/standalone/i386
67ditto --noextattr --noqtn ${1%/*}/i386/boot ${1}/Core/Root/usr/standalone/i386
68ditto --noextattr --noqtn ${1%/*}/i386/boot0 ${1}/Core/Root/usr/standalone/i386
69ditto --noextattr --noqtn ${1%/*}/i386/boot0md ${1}/Core/Root/usr/standalone/i386
70ditto --noextattr --noqtn ${1%/*}/i386/boot1f32 ${1}/Core/Root/usr/standalone/i386
71ditto --noextattr --noqtn ${1%/*}/i386/boot1h ${1}/Core/Root/usr/standalone/i386
72ditto --noextattr --noqtn ${1%/*}/i386/boot1he ${1}/Core/Root/usr/standalone/i386
73ditto --noextattr --noqtn ${1%/*}/i386/boot1hp ${1}/Core/Root/usr/standalone/i386
74ditto --noextattr --noqtn ${1%/*}/i386/cdboot ${1}/Core/Root/usr/standalone/i386
75ditto --noextattr --noqtn ${1%/*}/i386/chain0 ${1}/Core/Root/usr/standalone/i386
76ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Core/Root/usr/local/bin
77ditto --noextattr --noqtn ${1%/*}/i386/bdmesg ${1}/Core/Root/usr/local/bin
78local coresize=$( du -hkc "${1}/Core/Root" | tail -n1 | awk {'print $1'} )
79echo "[BUILD] i386 "
80buildpackage "${1}/Core" "/" "0" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
81
82# build Chameleon package
83echo "================= Chameleon ================="
84outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Chameleon\">"
85choices[$((choicescount++))]="<choice\n\tid=\"Chameleon\"\n\ttitle=\"Chameleon_title\"\n\tdescription=\"Chameleon_description\"\n>\n</choice>\n"
86
87# build standard package
88mkdir -p ${1}/Standard/Root
89mkdir -p ${1}/Standard/Scripts/Resources
90cp -f ${pkgroot}/Scripts/Main/Standard/* ${1}/Standard/Scripts
91 cp -f ${pkgroot}/Scripts/Sub/* ${1}/Standard/Scripts
92ditto --arch i386 `which SetFile` ${1}/Standard/Scripts/Resources/SetFile
93ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/Standard/Scripts/Resources/revision
94ditto --noextattr --noqtn ${1%/*/*}/version ${1}/Standard/Scripts/Resources/version
95echo "[BUILD] Standard "
96 buildpackage "${1}/Standard" "/" "${coresize}" "start_enabled=\"true\" start_selected=\"upgrade_allowed()\" selected=\"exclusive(choices['EFI']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
97# hh="selected=\"exclusive(choices['EFI']) &amp;&amp; exclusive(choices['noboot'])\""
98# buildpackage "${1}/Standard" "/" "${coresize}" "start_enabled=\"true\" start_selected=\"upgrade_allowed()\" ${hh}" >/dev/null 2>&1
99# End build standard package
100
101# build efi package
102mkdir -p ${1}/EFI/Root
103mkdir -p ${1}/EFI/Scripts/Resources
104cp -f ${pkgroot}/Scripts/Main/EFI/* ${1}/EFI/Scripts
105 cp -f ${pkgroot}/Scripts/Sub/* ${1}/EFI/Scripts
106ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Resources/SetFile
107ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/EFI/Scripts/Resources/revision
108ditto --noextattr --noqtn ${1%/*/*}/version ${1}/EFI/Scripts/Resources/version
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" "/$chamTemp" "" "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 # klibc.dylib #
125 # Resolution.dylib #
126 # uClibcxx.dylib #
127 # Keylayout.dylib #
128 ###############################
129 if [ "$(ls -A "${1%/*}/i386/modules")" ]; then
130 {
131 outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Module\">"
132 choices[$((choicescount++))]="<choice\n\tid=\"Module\"\n\ttitle=\"Module_title\"\n\tdescription=\"Module_description\"\n>\n</choice>\n"
133 ((xmlindent++))
134 packagesidentity="org.chameleon.modules"
135# -
136 if [ -e ${1%/*}/i386/modules/klibc.dylib ]; then
137 {
138 mkdir -p ${1}/klibc/Root
139 ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/klibc/Root
140 echo "[BUILD] klibc "
141 buildpackage "${1}/klibc" "/$chamTemp/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
142 }
143 fi
144# -
145 if [ -e ${1%/*}/i386/modules/Resolution.dylib ]; then
146 {
147 mkdir -p ${1}/AutoReso/Root
148 ditto --noextattr --noqtn ${1%/*}/i386/modules/Resolution.dylib ${1}/AutoReso/Root
149 echo "[BUILD] Resolution "
150 buildpackage "${1}/AutoReso" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
151 }
152 fi
153# -
154 if [ -e ${1%/*}/i386/modules/uClibcxx.dylib ]; then
155 {
156 mkdir -p ${1}/uClibc/Root
157 ditto --noextattr --noqtn ${1%/*}/i386/modules/uClibcxx.dylib ${1}/uClibc/Root
158 ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/uClibc/Root
159 echo "[BUILD] uClibc++ "
160 buildpackage "${1}/uClibc" "/$chamTemp/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
161 }
162 fi
163# -
164 if [ -e ${1%/*}/i386/modules/Keylayout.dylib ]; then
165 {
166 mkdir -p ${1}/Keylayout/Root
167 ditto --noextattr --noqtn ${1%/*}/i386/modules/Keylayout.dylib ${1}/Keylayout/Root
168 echo "[BUILD] Keylayout "
169 buildpackage "${1}/Keylayout" "/$chamTemp/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
170 }
171 fi
172
173 ((xmlindent--))
174 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
175 }
176 else
177 {
178 echo " -= no modules to include =-"
179 }
180 fi
181# End build Modules packages
182 ((xmlindent--))
183 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
184# End build Chameleon package
185
186# build Extras package
187# build options packages
188
189outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Options\">"
190choices[$((choicescount++))]="<choice\n\tid=\"Options\"\n\ttitle=\"Options_title\"\n\tdescription=\"Options_description\"\n>\n</choice>\n"
191((xmlindent++))
192
193# ------------------------------------------------------
194# parse BootOptions folder to find files of boot options.
195# ------------------------------------------------------
196bootOptionsFolder="${pkgroot}/BootOptions"
197bootOptionFiles=($( find "${bootOptionsFolder}" -depth 1 -not -name '.svn' ))
198
199for (( i = 0 ; i < ${#bootOptionFiles[@]} ; i++ ))
200do
201
202# Take filename and Strip .txt from end and path from front
203builtOptionsFolderName=$( echo ${bootOptionFiles[$i]%.txt} )
204builtOptionsFolderName=$( echo ${builtOptionsFolderName##*/} )
205echo "================= $builtOptionsFolderName ================="
206
207outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${builtOptionsFolderName}\">"
208choices[$((choicescount++))]="<choice\n\tid=\"${builtOptionsFolderName}\"\n\ttitle=\"${builtOptionsFolderName}_title\"\n\tdescription=\"${builtOptionsFolderName}_description\"\n>\n</choice>\n"
209((xmlindent++))
210packagesidentity="org.chameleon.options.$builtOptionsFolderName"
211
212# ------------------------------------------------------
213# Read boot option file. for example, Resolutions.txt.
214# Each line in the file is a boot option to add.
215# Structure of boot option in file is name:key=value
216# ------------------------------------------------------
217while read textLine
218do
219# split line - taking all before ':' as option name
220# and all after ':' as key/value
221optionName=${textLine%:*}
222keyValue=${textLine##*:}
223
224# create folders required for each boot option
225mkdir -p "${1}/$optionName/Root/"
226
227# create dummy file with name of key/value
228echo "" > "${1}/$optionName/Root/${keyValue}"
229
230echo "[BUILD] ${optionName} "
231
232# ------------------------------------------------------
233# Before calling buildpackage, see if any bootOptionFiles
234 # have requested being set to exclusive.
235# Manually set for now to 'Resolutions'.
236 # It can eventually be non-specifc by adding a dedicated
237 # field at the top of each bootOptionFiles to indicate
238 # if the set should be exclusive or not.
239 # ------------------------------------------------------
240 # Note: This currently fails to achieve the desired effect?
241 # I'll improve the code etc. once (if) I can get it working!
242# ------------------------------------------------------
243if [ $builtOptionsFolderName = "Resolution" ]; then
244# build a list of all resolutions but exclude current resolution.
245arrayCount=0
246while read textLineTemp
247do
248optionNameTemp=${textLineTemp%:*}
249if [ $optionNameTemp != $optionName ]; then
250resolutionArray[arrayCount]=$optionNameTemp
251((arrayCount++))
252fi
253done < ${bootOptionFiles[$i]}
254
255# Build exclusive string
256stringStart="selected=\""
257 stringBefore="exclusive(choices['"
258stringAfter="']) &amp;&amp; "
259stringEnd="'])\""
260 x=${stringStart}${stringBefore}
261
262 totalItems="${#resolutionArray[@]}"
263 lastItem=$((totalItems-1))
264
265for (( r = 0 ; r < ${#resolutionArray[@]} ; r++ ))
266do
267 x="${x}${resolutionArray[r]}"
268 # Only add these to end of string up to the one before the last item
269 if [ $r -lt $lastItem ]; then
270 x="${x}${stringAfter}${stringBefore}"
271 fi
272done
273 x="${x}${stringEnd}"
274 buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\"" ${x} >/dev/null 2>&1
275else
276buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
277fi
278
279done < ${bootOptionFiles[$i]}
280
281((xmlindent--))
282outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
283done
284
285# build KeyLayout options packages
286echo "================= Keymaps Options ================="
287outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"KeyLayout\">"
288choices[$((choicescount++))]="<choice\n\tid=\"KeyLayout\"\n\ttitle=\"KeyLayout_title\"\n\tdescription=\"KeyLayout_description\"\n>\n</choice>\n"
289((xmlindent++))
290packagesidentity="org.chameleon.options.keylayout"
291keymaps=($( find "${1%/sym/*}/Keymaps" -type f -depth 1 -name '*.lyt' | sed 's|.*/||;s|\.lyt||' ))
292for (( i = 0 ; i < ${#keymaps[@]} ; i++ ))
293do
294mkdir -p "${1}/${keymaps[$i]##*/}/Root/"
295echo "dummy file" >"${1}/${keymaps[$i]##*/}/Root/KeyLayout=${keymaps[$i]##*/}"
296echo "[BUILD] ${keymaps[$i]##*/} "
297buildpackage "${1}/${keymaps[$i]##*/}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
298done
299((xmlindent--))
300outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
301
302# End build KeyLayout options packages
303
304((xmlindent--))
305outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
306
307# End build options packages
308
309# build theme packages
310echo "================= Themes ================="
311outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Themes\">"
312choices[$((choicescount++))]="<choice\n\tid=\"Themes\"\n\ttitle=\"Themes_title\"\n\tdescription=\"Themes_description\"\n>\n</choice>\n"
313((xmlindent++))
314
315# Using themes section from Azi's/package branch.
316packagesidentity="org.chameleon.themes"
317artwork="${1%/sym/package}/artwork/themes"
318themes=($( find "${artwork}" -type d -depth 1 -not -name '.svn' ))
319for (( i = 0 ; i < ${#themes[@]} ; i++ ))
320do
321theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
322mkdir -p "${1}/${theme}/Root/"
323rsync -r --exclude=.svn "${themes[$i]}/" "${1}/${theme}/Root/${theme}"
324echo "[BUILD] ${theme}"
325buildpackage "${1}/${theme}" "/$chamTemp/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
326done
327
328((xmlindent--))
329outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
330# End build theme packages
331# End build Extras package
332
333# build post install package
334echo "================= Post ================="
335mkdir -p ${1}/Post/Root
336mkdir -p ${1}/Post/Scripts
337cp -f ${pkgroot}/Scripts/Main/Post/* ${1}/Post/Scripts
338echo "[BUILD] Post "
339buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
340outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
341
342# build meta package
343
344makedistribution "${1}" "${2}" "${3}" "${4}" "${5}"
345
346# clean up
347
348#rm -R -f "${1}"
349
350}
351
352fixperms ()
353{
354# $1 path
355find "${1}" -type f -exec chmod 644 {} \;
356find "${1}" -type d -exec chmod 755 {} \;
357chown -R 0:0 "${1}"
358}
359
360buildpackage ()
361{
362# $1 Path to package to build containing Root and or Scripts
363# $2 Install Location
364# $3 Size
365# $4 Options
366
367if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
368
369local packagename="${1##*/}"
370local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
371find "${1}" -name '.DS_Store' -delete
372local filecount=$( find "${1}/Root" | wc -l )
373if [ "${3}" ]; then
374local installedsize="${3}"
375else
376local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
377fi
378local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
379
380#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
381
382header+="identifier=\"${identifier}\" "
383header+="version=\"${version}\" "
384
385[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
386
387header+="auth=\"root\">\n"
388header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
389#rm -R -f "${1}/Temp"
390
391[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
392[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
393
394if [ -d "${1}/Scripts" ]; then
395header+="\t<scripts>\n"
396for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
397do
398header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
399done
400header+="\t</scripts>\n"
401chown -R 0:0 "${1}/Scripts"
402pushd "${1}/Scripts" >/dev/null
403find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
404popd >/dev/null
405fi
406
407header+="</pkg-info>"
408echo -e "${header}" >> ~/Desktop/header
409echo -e "${header}" > "${1}/Temp/PackageInfo"
410pushd "${1}/Root" >/dev/null
411find . -print | cpio -o -z -H cpio > "../Temp/Payload"
412popd >/dev/null
413pushd "${1}/Temp" >/dev/null
414
415xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
416
417popd >/dev/null
418
419outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${packagename// /}\"/>"
420
421if [ "${4}" ]; then
422local choiceoptions="${indent[$xmlindent]}${4}\n"
423fi
424choices[$((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"
425
426#rm -R -f "${1}"
427fi
428}
429
430makedistribution ()
431{
432rm -f "${1%/*}/${packagename// /}"*.pkg
433
434find "${1}" -type f -name '*.pkg' -depth 1 | while read component
435do
436mkdir -p "${1}/${packagename}/${component##*/}"
437pushd "${1}/${packagename}/${component##*/}" >/dev/null
438xar -x -f "${1%}/${component##*/}"
439popd >/dev/null
440done
441
442ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
443ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
444
445find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
446
447for (( i=0; i < ${#outline[*]} ; i++));
448do
449echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
450done
451
452for (( i=0; i < ${#choices[*]} ; i++));
453do
454echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
455done
456
457echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
458
459perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
460perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
461
462# Adding Developer and credits
463perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
464perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
465perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
466
467stage=${stage/RC/Release Candidate }
468stage=${stage/FINAL/2.0 Final}
469perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
470
471find "${1}/${packagename}" -name '.DS_Store' -delete
472pushd "${1}/${packagename}" >/dev/null
473xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
474popd >/dev/null
475
476# Here is the place for assign a Icon to the pkg
477# command use to generate the file:
478# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
479# ----
480# ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
481# DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
482# Rez -append tempicns.rsrc -o "${1%/*}/$packagename-${version}-r$revision.pkg"
483# SetFile -a C "${1%/*}/$packagename-${version}-r$revision.pkg"
484# rm -f tempicns.rsrc
485# rm -rf "${pkgroot}/Icons/Icons"
486# End
487
488md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
489echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
490echo ""
491
492echo -e $COL_GREEN"--------------------------"$COL_RESET
493echo -e $COL_GREEN"Building process complete!"$COL_RESET
494echo -e $COL_GREEN"--------------------------"$COL_RESET
495echo ""
496echo -e $COL_GREEN"Build info."
497echo -e $COL_GREEN"==========="
498echo -e $COL_BLUE"Package name:"$COL_RESET"$packagename-${version}-r$revision.pkg"
499echo -e $COL_BLUE"MD5:"$COL_RESET"$md5"
500echo -e $COL_BLUE"Version:"$COL_RESET"$version"
501echo -e $COL_BLUE"Stage:"$COL_RESET"$stage"
502echo -e $COL_BLUE"Date/Time:"$COL_RESET"$builddate"
503echo ""
504
505}
506
507main "${1}" "${2}" "${3}" "${4}" "${5}"
508
509

Archive Download this file

Revision: 1580