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# End build standard package
98
99# build efi package
100mkdir -p ${1}/EFI/Root
101mkdir -p ${1}/EFI/Scripts/Resources
102cp -f ${pkgroot}/Scripts/Main/EFI/* ${1}/EFI/Scripts
103 cp -f ${pkgroot}/Scripts/Sub/* ${1}/EFI/Scripts
104ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Resources/SetFile
105ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/EFI/Scripts/Resources/revision
106ditto --noextattr --noqtn ${1%/*/*}/version ${1}/EFI/Scripts/Resources/version
107echo "[BUILD] EFI "
108buildpackage "${1}/EFI" "/" "${coresize}" "start_visible=\"systemHasGPT()\" start_selected=\"false\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
109# End build efi package
110
111# build reset choice package
112mkdir -p ${1}/noboot/Root
113echo "[BUILD] Reset choice "
114buildpackage "${1}/noboot" "/$chamTemp" "" "start_visible=\"true\" start_selected=\"false\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['EFI'])\"" >/dev/null 2>&1
115# End build reset choice package
116
117# build Modules package
118 echo "================= Modules ================="
119 ###############################
120 # Supported Modules #
121 ###############################
122 # klibc.dylib #
123 # Resolution.dylib #
124 # uClibcxx.dylib #
125 # Keylayout.dylib #
126 ###############################
127 if [ "$(ls -A "${1%/*}/i386/modules")" ]; then
128 {
129 outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Module\">"
130 choices[$((choicescount++))]="<choice\n\tid=\"Module\"\n\ttitle=\"Module_title\"\n\tdescription=\"Module_description\"\n>\n</choice>\n"
131 ((xmlindent++))
132 packagesidentity="org.chameleon.modules"
133# -
134 if [ -e ${1%/*}/i386/modules/klibc.dylib ]; then
135 {
136 mkdir -p ${1}/klibc/Root
137 ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/klibc/Root
138 echo "[BUILD] klibc "
139 buildpackage "${1}/klibc" "/$chamTemp/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
140 }
141 fi
142# -
143 if [ -e ${1%/*}/i386/modules/Resolution.dylib ]; then
144 {
145 mkdir -p ${1}/AutoReso/Root
146 ditto --noextattr --noqtn ${1%/*}/i386/modules/Resolution.dylib ${1}/AutoReso/Root
147 echo "[BUILD] Resolution "
148 buildpackage "${1}/AutoReso" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
149 }
150 fi
151# -
152 if [ -e ${1%/*}/i386/modules/uClibcxx.dylib ]; then
153 {
154 mkdir -p ${1}/uClibc/Root
155 ditto --noextattr --noqtn ${1%/*}/i386/modules/uClibcxx.dylib ${1}/uClibc/Root
156 ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/uClibc/Root
157 echo "[BUILD] uClibc++ "
158 buildpackage "${1}/uClibc" "/$chamTemp/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
159 }
160 fi
161# -
162 if [ -e ${1%/*}/i386/modules/Keylayout.dylib ]; then
163 {
164 mkdir -p ${1}/Keylayout/Root
165 ditto --noextattr --noqtn ${1%/*}/i386/modules/Keylayout.dylib ${1}/Keylayout/Root
166 echo "[BUILD] Keylayout "
167 buildpackage "${1}/Keylayout" "/$chamTemp/Extra/modules" "" "start_selected=\"true\"" >/dev/null 2>&1
168 }
169 fi
170
171 ((xmlindent--))
172 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
173 }
174 else
175 {
176 echo " -= no modules to include =-"
177 }
178 fi
179# End build Modules packages
180 ((xmlindent--))
181 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
182# End build Chameleon package
183
184# build Extras package
185# build options packages
186
187outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Options\">"
188choices[$((choicescount++))]="<choice\n\tid=\"Options\"\n\ttitle=\"Options_title\"\n\tdescription=\"Options_description\"\n>\n</choice>\n"
189((xmlindent++))
190
191# ------------------------------------------------------
192# parse BootOptions folder to find files of boot options.
193# ------------------------------------------------------
194bootOptionsFolder="${pkgroot}/BootOptions"
195bootOptionFiles=($( find "${bootOptionsFolder}" -depth 1 -not -name '.svn' ))
196
197for (( i = 0 ; i < ${#bootOptionFiles[@]} ; i++ ))
198do
199
200# Take filename and Strip .txt from end and path from front
201builtOptionsFolderName=$( echo ${bootOptionFiles[$i]%.txt} )
202builtOptionsFolderName=$( echo ${builtOptionsFolderName##*/} )
203echo "================= $builtOptionsFolderName ================="
204
205outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${builtOptionsFolderName}\">"
206choices[$((choicescount++))]="<choice\n\tid=\"${builtOptionsFolderName}\"\n\ttitle=\"${builtOptionsFolderName}_title\"\n\tdescription=\"${builtOptionsFolderName}_description\"\n>\n</choice>\n"
207((xmlindent++))
208packagesidentity="org.chameleon.options.$builtOptionsFolderName"
209
210# ------------------------------------------------------
211 # Read boot option file in to an array.
212 # Structure of boot option in file is name:key=value
213 # Note: This requires the boot option file to have
214 # a carriage return at the end of the last line.
215# ------------------------------------------------------
216 count=0
217 availableOptions=()
218 while read textLine
219 do
220 availableOptions[count]=$textLine
221 ((count++))
222done < ${bootOptionFiles[$i]}
223
224# ------------------------------------------------------
225# Loop through options in array and process each in turn
226# ------------------------------------------------------
227for (( c = 0 ; c < ${#availableOptions[@]} ; c++ ))
228do
229 textLine=${availableOptions[c]}
230# split line - taking all before ':' as option name
231# and all after ':' as key/value
232optionName=${textLine%:*}
233keyValue=${textLine##*:}
234
235# create folders required for each boot option
236mkdir -p "${1}/$optionName/Root/"
237
238# create dummy file with name of key/value
239echo "" > "${1}/$optionName/Root/${keyValue}"
240
241echo "[BUILD] ${optionName} "
242
243# ------------------------------------------------------
244# Before calling buildpackage, see if any bootOptionFiles
245# have requested being set to exclusive.
246# Manually set for now to 'Resolutions'.
247# It can eventually be non-specifc by adding a dedicated
248# field at the top of each bootOptionFiles to indicate
249# if the set should be exclusive or not.
250# ------------------------------------------------------
251if [ $builtOptionsFolderName = "Resolution" ]; then
252
253# Prepare individual string parts
254stringStart="selected=\""
255 stringBefore="exclusive(choices['"
256stringAfter="']) &amp;&amp; "
257stringEnd="'])\""
258 x=${stringStart}${stringBefore}
259
260 # build string for sending to buildpackage
261 totalItems="${#availableOptions[@]}"
262 lastItem=$((totalItems-1))
263
264for (( r = 0 ; r < ${totalItems} ; r++ ))
265do
266 textLineTemp=${availableOptions[r]}
267 optionNameTemp=${textLineTemp%:*}
268 if [ "${optionNameTemp}" != "${optionName}" ]; then
269 x="${x}${optionNameTemp}"
270 # Only add these to end of string up to the one before the last item
271 if [ $r -lt $lastItem ]; then
272 x="${x}${stringAfter}${stringBefore}"
273 fi
274 fi
275done
276 x="${x}${stringEnd}"
277 buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\" ${x}" >/dev/null 2>&1
278else
279buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
280fi
281
282done
283
284((xmlindent--))
285outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
286done
287
288# build KeyLayout options packages
289echo "================= Keymaps Options ================="
290outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"KeyLayout\">"
291choices[$((choicescount++))]="<choice\n\tid=\"KeyLayout\"\n\ttitle=\"KeyLayout_title\"\n\tdescription=\"KeyLayout_description\"\n>\n</choice>\n"
292((xmlindent++))
293packagesidentity="org.chameleon.options.keylayout"
294keymaps=($( find "${1%/sym/*}/Keymaps" -type f -depth 1 -name '*.lyt' | sed 's|.*/||;s|\.lyt||' ))
295for (( i = 0 ; i < ${#keymaps[@]} ; i++ ))
296do
297mkdir -p "${1}/${keymaps[$i]##*/}/Root/"
298echo "dummy file" >"${1}/${keymaps[$i]##*/}/Root/KeyLayout=${keymaps[$i]##*/}"
299echo "[BUILD] ${keymaps[$i]##*/} "
300buildpackage "${1}/${keymaps[$i]##*/}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
301done
302((xmlindent--))
303outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
304
305# End build KeyLayout options 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++))
317
318# Using themes section from Azi's/package branch.
319packagesidentity="org.chameleon.themes"
320artwork="${1%/sym/package}/artwork/themes"
321themes=($( find "${artwork}" -type d -depth 1 -not -name '.svn' ))
322for (( i = 0 ; i < ${#themes[@]} ; i++ ))
323do
324theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
325mkdir -p "${1}/${theme}/Root/"
326rsync -r --exclude=.svn "${themes[$i]}/" "${1}/${theme}/Root/${theme}"
327echo "[BUILD] ${theme}"
328buildpackage "${1}/${theme}" "/$chamTemp/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
329done
330
331((xmlindent--))
332outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
333# End build theme packages
334# End build Extras package
335
336# build post install package
337echo "================= Post ================="
338mkdir -p ${1}/Post/Root
339mkdir -p ${1}/Post/Scripts
340cp -f ${pkgroot}/Scripts/Main/Post/* ${1}/Post/Scripts
341echo "[BUILD] Post "
342buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
343outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
344
345# build meta package
346
347makedistribution "${1}" "${2}" "${3}" "${4}" "${5}"
348
349# clean up
350
351#rm -R -f "${1}"
352
353}
354
355fixperms ()
356{
357# $1 path
358find "${1}" -type f -exec chmod 644 {} \;
359find "${1}" -type d -exec chmod 755 {} \;
360chown -R 0:0 "${1}"
361}
362
363buildpackage ()
364{
365# $1 Path to package to build containing Root and or Scripts
366# $2 Install Location
367# $3 Size
368# $4 Options
369
370if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
371
372local packagename="${1##*/}"
373local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
374find "${1}" -name '.DS_Store' -delete
375local filecount=$( find "${1}/Root" | wc -l )
376if [ "${3}" ]; then
377local installedsize="${3}"
378else
379local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
380fi
381local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
382
383#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
384
385header+="identifier=\"${identifier}\" "
386header+="version=\"${version}\" "
387
388[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
389
390header+="auth=\"root\">\n"
391header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
392#rm -R -f "${1}/Temp"
393
394[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
395[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
396
397if [ -d "${1}/Scripts" ]; then
398header+="\t<scripts>\n"
399for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
400do
401header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
402done
403header+="\t</scripts>\n"
404chown -R 0:0 "${1}/Scripts"
405pushd "${1}/Scripts" >/dev/null
406find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
407popd >/dev/null
408fi
409
410header+="</pkg-info>"
411echo -e "${header}" >> ~/Desktop/header
412echo -e "${header}" > "${1}/Temp/PackageInfo"
413pushd "${1}/Root" >/dev/null
414find . -print | cpio -o -z -H cpio > "../Temp/Payload"
415popd >/dev/null
416pushd "${1}/Temp" >/dev/null
417
418xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
419
420popd >/dev/null
421
422outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${packagename// /}\"/>"
423
424if [ "${4}" ]; then
425local choiceoptions="${indent[$xmlindent]}${4}\n"
426fi
427choices[$((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"
428
429#rm -R -f "${1}"
430fi
431}
432
433makedistribution ()
434{
435rm -f "${1%/*}/${packagename// /}"*.pkg
436
437find "${1}" -type f -name '*.pkg' -depth 1 | while read component
438do
439mkdir -p "${1}/${packagename}/${component##*/}"
440pushd "${1}/${packagename}/${component##*/}" >/dev/null
441xar -x -f "${1%}/${component##*/}"
442popd >/dev/null
443done
444
445ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
446ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
447
448find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
449
450for (( i=0; i < ${#outline[*]} ; i++));
451do
452echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
453done
454
455for (( i=0; i < ${#choices[*]} ; i++));
456do
457echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
458done
459
460echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
461
462perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
463perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
464
465# Adding Developer and credits
466perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
467perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
468perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
469
470stage=${stage/RC/Release Candidate }
471stage=${stage/FINAL/2.0 Final}
472perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
473
474find "${1}/${packagename}" -name '.DS_Store' -delete
475pushd "${1}/${packagename}" >/dev/null
476xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
477popd >/dev/null
478
479# Here is the place for assign a Icon to the pkg
480# command use to generate the file:
481# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
482# ----
483# ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
484# DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
485# Rez -append tempicns.rsrc -o "${1%/*}/$packagename-${version}-r$revision.pkg"
486# SetFile -a C "${1%/*}/$packagename-${version}-r$revision.pkg"
487# rm -f tempicns.rsrc
488# rm -rf "${pkgroot}/Icons/Icons"
489# End
490
491md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
492echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
493echo ""
494
495echo -e $COL_GREEN"--------------------------"$COL_RESET
496echo -e $COL_GREEN"Building process complete!"$COL_RESET
497echo -e $COL_GREEN"--------------------------"$COL_RESET
498echo ""
499echo -e $COL_GREEN"Build info."
500echo -e $COL_GREEN"==========="
501echo -e $COL_BLUE"Package name:"$COL_RESET"$packagename-${version}-r$revision.pkg"
502echo -e $COL_BLUE"MD5:"$COL_RESET"$md5"
503echo -e $COL_BLUE"Version:"$COL_RESET"$version"
504echo -e $COL_BLUE"Stage:"$COL_RESET"$stage"
505echo -e $COL_BLUE"Date/Time:"$COL_RESET"$builddate"
506echo ""
507
508}
509
510main "${1}" "${2}" "${3}" "${4}" "${5}"
511
512

Archive Download this file

Revision: 1581