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

Archive Download this file

Revision: 1430