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

Archive Download this file

Revision: 1428