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"
292artwork="${1%/*}"
293themes=($( find "${artwork%/*}/artwork/themes" -type d -depth 1 -not -name '.svn' ))
294for (( i = 0 ; i < ${#themes[@]} ; i++ ))
295do
296theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
297mkdir -p "${1}/${theme}/Root/"
298 rsync -r --exclude=.* "${themes[$i]}/" "${1}/${theme}/Root/${theme}"
299# i see no need for this ??
300#find "${1}/${theme}" -type f -exec chmod 644 {} \+
301echo "[BUILD] ${theme}"
302buildpackage "${1}/${theme}" "/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
303#rm -R -f "${1}/${i##*/}" # = .../sym/package/0, .../1, etc... not needed anyway
304done
305
306((xmlindent--))
307outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
308# End build theme packages
309
310#((xmlindent--))
311#outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
312# End build Extras package
313
314# build post install package
315echo "================= Post ================="
316mkdir -p ${1}/Post/Root
317mkdir -p ${1}/Post/Scripts
318cp -f ${pkgroot}/Scripts/Post/* ${1}/Post/Scripts
319echo "[BUILD] Post "
320buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
321outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
322
323# build meta package
324
325makedistribution "${1}" "${2}" "${3}" "${4}" "${5}"
326
327# clean up
328
329#rm -R -f "${1}" #Azipkg: don't delete sym/package - uncoment when done
330
331}
332
333fixperms ()
334{
335# $1 path
336find "${1}" -type f -exec chmod 644 {} \;
337find "${1}" -type d -exec chmod 755 {} \;
338chown -R 0:0 "${1}"
339}
340
341buildpackage ()
342{
343# $1 Path to package to build containing Root and or Scripts
344# $2 Install Location
345# $3 Size
346# $4 Options
347
348if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
349
350local packagename="${1##*/}"
351local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
352find "${1}" -name '.DS_Store' -delete
353local filecount=$( find "${1}/Root" | wc -l )
354if [ "${3}" ]; then
355local installedsize="${3}"
356else
357local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
358fi
359local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
360
361#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
362
363header+="identifier=\"${identifier}\" "
364header+="version=\"${version}\" "
365
366[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
367
368header+="auth=\"root\">\n"
369header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
370rm -R -f "${1}/Temp"
371
372[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
373[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
374
375if [ -d "${1}/Scripts" ]; then
376header+="\t<scripts>\n"
377for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
378do
379header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
380done
381header+="\t</scripts>\n"
382chown -R 0:0 "${1}/Scripts"
383pushd "${1}/Scripts" >/dev/null
384find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
385popd >/dev/null
386fi
387
388header+="</pkg-info>"
389echo -e "${header}" > "${1}/Temp/PackageInfo"
390pushd "${1}/Root" >/dev/null
391find . -print | cpio -o -z -H cpio > "../Temp/Payload"
392popd >/dev/null
393pushd "${1}/Temp" >/dev/null
394
395xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
396
397popd >/dev/null
398
399outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${packagename// /}\"/>"
400
401if [ "${4}" ]; then
402local choiceoptions="${indent[$xmlindent]}${4}\n"
403fi
404choices[$((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"
405
406#rm -R -f "${1}" #Azipkg: don't delete e.g. sym/package/Core - uncoment when done
407fi
408}
409
410makedistribution ()
411{
412rm -f "${1%/*}/${packagename// /}"*.pkg
413
414find "${1}" -type f -name '*.pkg' -depth 1 | while read component
415do
416mkdir -p "${1}/${packagename}/${component##*/}"
417pushd "${1}/${packagename}/${component##*/}" >/dev/null
418xar -x -f "${1%}/${component##*/}"
419popd >/dev/null
420done
421
422ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
423ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
424
425find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
426
427for (( i=0; i < ${#outline[*]} ; i++));
428do
429echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
430done
431
432for (( i=0; i < ${#choices[*]} ; i++));
433do
434echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
435done
436
437echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
438
439perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
440perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
441
442# Adding Developer and credits
443perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
444perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
445perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
446
447stage=${stage/RC/Release Candidate }
448stage=${stage/FINAL/2.0 Final}
449perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
450
451find "${1}/${packagename}" -name '.DS_Store' -delete
452pushd "${1}/${packagename}" >/dev/null
453xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
454popd >/dev/null
455
456# Here is the place for assign a Icon to the pkg
457# command use to generate the file:
458# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
459# ----
460# ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
461# DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
462# Rez -append tempicns.rsrc -o "${1%/*}/${packagename// /}-${version}-r${revision}.pkg"
463# SetFile -a C "${1%/*}/${packagename// /}-${version}-r${revision}.pkg"
464# rm -f tempicns.rsrc
465# rm -rf "${pkgroot}/Icons/Icons"
466# End
467
468md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
469echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
470echo ""
471
472echo -e $COL_BLACK"--------------------------"$COL_RESET
473echo -e $COL_BLACK"Building process complete!"$COL_RESET
474echo -e $COL_BLACK"--------------------------"$COL_RESET
475echo ""
476echo -e $COL_BLACK"Build info."
477echo -e $COL_BLACK"==========="
478echo -e $COL_BLUE"Package name:"$COL_BLACK"$packagename-${version}-r$revision.pkg"$COL_RESET
479echo -e $COL_BLUE"MD5:"$COL_BLACK"$md5"$COL_RESET
480echo -e $COL_BLUE"Version:"$COL_BLACK"$version"$COL_RESET
481echo -e $COL_BLUE"Stage:"$COL_BLACK"$stage"$COL_RESET
482echo -e $COL_BLUE"Date/Time:"$COL_BLACK"$builddate"$COL_RESET
483echo ""
484
485}
486
487main "${1}" "${2}" "${3}" "${4}" "${5}"
488
489

Archive Download this file

Revision: 1489