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# =================
39
40distributioncount=0
41xmlindent=0
42
43indent[0]="\t"
44indent[1]="\t\t"
45indent[2]="\t\t\t"
46indent[3]="\t\t\t\t"
47
48main ()
49{
50
51# clean up the destination path
52
53rm -R -f "${1}"
54echo ""
55echo -e $COL_CYAN"----------------------------------"$COL_RESET
56echo -e $COL_CYAN"Building $packagename Install Package"$COL_RESET
57echo -e $COL_CYAN"----------------------------------"$COL_RESET
58echo ""
59
60outline[$((outlinecount++))]="${indent[$xmlindent]}<choices-outline>"
61
62# build core package
63echo "================= Core ================="
64((xmlindent++))
65packagesidentity="org.chameleon.core"
66mkdir -p ${1}/Core/Root/usr/local/bin
67mkdir -p ${1}/Core/Root/usr/standalone/i386
68ditto --noextattr --noqtn ${1%/*}/i386/boot ${1}/Core/Root/usr/standalone/i386
69ditto --noextattr --noqtn ${1%/*}/i386/boot0 ${1}/Core/Root/usr/standalone/i386
70ditto --noextattr --noqtn ${1%/*}/i386/boot0md ${1}/Core/Root/usr/standalone/i386
71ditto --noextattr --noqtn ${1%/*}/i386/boot1f32 ${1}/Core/Root/usr/standalone/i386
72ditto --noextattr --noqtn ${1%/*}/i386/boot1h ${1}/Core/Root/usr/standalone/i386
73ditto --noextattr --noqtn ${1%/*}/i386/boot1he ${1}/Core/Root/usr/standalone/i386
74ditto --noextattr --noqtn ${1%/*}/i386/boot1hp ${1}/Core/Root/usr/standalone/i386
75ditto --noextattr --noqtn ${1%/*}/i386/cdboot ${1}/Core/Root/usr/standalone/i386
76ditto --noextattr --noqtn ${1%/*}/i386/chain0 ${1}/Core/Root/usr/standalone/i386
77ditto --noextattr --noqtn ${1%/*}/i386/fdisk440 ${1}/Core/Root/usr/local/bin
78ditto --noextattr --noqtn ${1%/*}/i386/bdmesg ${1}/Core/Root/usr/local/bin
79local coresize=$( du -hkc "${1}/Core/Root" | tail -n1 | awk {'print $1'} )
80echo "[BUILD] i386 "
81buildpackage "${1}/Core" "/" "0" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
82
83# build Chameleon package
84echo "================= Chameleon ================="
85outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Chameleon\">"
86choices[$((choicescount++))]="<choice\n\tid=\"Chameleon\"\n\ttitle=\"Chameleon_title\"\n\tdescription=\"Chameleon_description\"\n>\n</choice>\n"
87
88# build standard package
89mkdir -p ${1}/Standard/Root
90mkdir -p ${1}/Standard/Scripts/Resources
91cp -f ${pkgroot}/Scripts/Main/Standard/* ${1}/Standard/Scripts
92cp -f ${pkgroot}/Scripts/Sub/* ${1}/Standard/Scripts
93ditto --arch i386 `which SetFile` ${1}/Standard/Scripts/Resources/SetFile
94ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/Standard/Scripts/Resources/revision
95ditto --noextattr --noqtn ${1%/*/*}/version ${1}/Standard/Scripts/Resources/version
96echo "[BUILD] Standard "
97 buildpackage "${1}/Standard" "/" "${coresize}" "start_enabled=\"true\" start_selected=\"upgrade_allowed()\" selected=\"exclusive(choices['EFI']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
98# End build standard package
99
100# build efi package
101mkdir -p ${1}/EFI/Root
102mkdir -p ${1}/EFI/Scripts/Resources
103cp -f ${pkgroot}/Scripts/Main/EFI/* ${1}/EFI/Scripts
104cp -f ${pkgroot}/Scripts/Sub/* ${1}/EFI/Scripts
105ditto --arch i386 `which SetFile` ${1}/EFI/Scripts/Resources/SetFile
106ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/EFI/Scripts/Resources/revision
107ditto --noextattr --noqtn ${1%/*/*}/version ${1}/EFI/Scripts/Resources/version
108echo "[BUILD] EFI "
109buildpackage "${1}/EFI" "/" "${coresize}" "start_visible=\"systemHasGPT()\" start_selected=\"false\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['noboot'])\"" >/dev/null 2>&1
110# End build efi package
111
112# build reset choice package
113mkdir -p ${1}/noboot/Root
114echo "[BUILD] Reset choice "
115buildpackage "${1}/noboot" "/$chamTemp" "" "start_visible=\"true\" start_selected=\"false\" selected=\"exclusive(choices['Standard']) &amp;&amp; exclusive(choices['EFI'])\"" >/dev/null 2>&1
116# End build reset choice package
117
118 ((xmlindent--))
119 outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
120# End build Chameleon package
121
122# build Modules package
123echo "================= Modules ================="
124###############################
125# Supported Modules #
126###############################
127# klibc.dylib #
128# Resolution.dylib #
129# uClibcxx.dylib #
130# Keylayout.dylib #
131###############################
132if [ "$(ls -A "${1%/*}/i386/modules")" ]; then
133{
134outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Module\">"
135choices[$((choicescount++))]="<choice\n\tid=\"Module\"\n\ttitle=\"Module_title\"\n\tdescription=\"Module_description\"\n>\n</choice>\n"
136((xmlindent++))
137packagesidentity="org.chameleon.modules"
138# -
139if [ -e ${1%/*}/i386/modules/klibc.dylib ]; then
140{
141mkdir -p ${1}/klibc/Root
142ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/klibc/Root
143echo "[BUILD] klibc "
144buildpackage "${1}/klibc" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
145}
146fi
147# -
148if [ -e ${1%/*}/i386/modules/Resolution.dylib ]; then
149{
150mkdir -p ${1}/AutoReso/Root
151ditto --noextattr --noqtn ${1%/*}/i386/modules/Resolution.dylib ${1}/AutoReso/Root
152echo "[BUILD] Resolution "
153buildpackage "${1}/AutoReso" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
154}
155fi
156# -
157if [ -e ${1%/*}/i386/modules/uClibcxx.dylib ]; then
158{
159mkdir -p ${1}/uClibc/Root
160ditto --noextattr --noqtn ${1%/*}/i386/modules/uClibcxx.dylib ${1}/uClibc/Root
161ditto --noextattr --noqtn ${1%/*}/i386/modules/klibc.dylib ${1}/uClibc/Root
162echo "[BUILD] uClibc++ "
163buildpackage "${1}/uClibc" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
164}
165fi
166# -
167if [ -e ${1%/*}/i386/modules/Keylayout.dylib ]; then
168{
169mkdir -p ${1}/Keylayout/Root
170ditto --noextattr --noqtn ${1%/*}/i386/modules/Keylayout.dylib ${1}/Keylayout/Root
171echo "[BUILD] Keylayout "
172buildpackage "${1}/Keylayout" "/$chamTemp/Extra/modules" "" "start_selected=\"false\"" >/dev/null 2>&1
173}
174fi
175
176((xmlindent--))
177outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
178}
179else
180{
181echo " -= no modules to include =-"
182}
183fi
184# End build Modules packages
185
186
187# build Extras package
188# build options packages
189
190outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Options\">"
191choices[$((choicescount++))]="<choice\n\tid=\"Options\"\n\ttitle=\"Options_title\"\n\tdescription=\"Options_description\"\n>\n</choice>\n"
192((xmlindent++))
193
194# ------------------------------------------------------
195# parse OptionalSettings folder to find files of boot options.
196# ------------------------------------------------------
197OptionalSettingsFolder="${pkgroot}/OptionalSettings"
198OptionalSettingsFiles=($( find "${OptionalSettingsFolder}" -depth 1 ! -name '.svn' ! -name '.DS_Store' ))
199
200for (( i = 0 ; i < ${#OptionalSettingsFiles[@]} ; i++ ))
201do
202
203# Take filename and Strip .txt from end and path from front
204builtOptionsList=$( echo ${OptionalSettingsFiles[$i]%.txt} )
205builtOptionsList=$( echo ${builtOptionsList##*/} )
206echo "================= $builtOptionsList ================="
207outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${builtOptionsList}\">"
208choices[$((choicescount++))]="<choice\n\tid=\"${builtOptionsList}\"\n\ttitle=\"${builtOptionsList}_title\"\n\tdescription=\"${builtOptionsList}_description\"\n>\n</choice>\n"
209((xmlindent++))
210packagesidentity="org.chameleon.options.$builtOptionsList"
211
212# ------------------------------------------------------
213# Read boot option file in to an array.
214# ------------------------------------------------------
215availableOptions=() # array to hold the list of boot options, per 'section'.
216exclusiveFlag=0 # used to indicate list has exclusive options.
217exclusiveName="" # will be appended to exclusive 'none' option name.
218count=0 # used as index for stepping through array.
219while read textLine
220do
221# ignore lines in the file beginning with a # and Exclusive=False
222if [[ ${textLine} != \#* ]] && [[ ${textLine} != "Exclusive=False" ]];then
223# check for 'Exclusive=True' option in file
224if [[ ${textLine} == "Exclusive=True" ]];then
225exclusiveFlag=1
226exclusiveName=$builtOptionsList
227else
228availableOptions[count]=$textLine
229((count++))
230fi
231fi
232done < ${OptionalSettingsFiles[$i]}
233buildoptionalsettings "$1" "${exclusiveFlag}" "${exclusiveName}"
234
235((xmlindent--))
236outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
237done
238
239# build KeyLayout options packages
240echo "================= Keymaps Options ================="
241outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"KeyLayout\">"
242choices[$((choicescount++))]="<choice\n\tid=\"KeyLayout\"\n\ttitle=\"KeyLayout_title\"\n\tdescription=\"KeyLayout_description\"\n>\n</choice>\n"
243((xmlindent++))
244packagesidentity="org.chameleon.options.keylayout"
245
246# ------------------------------------------------------
247# Available Keylayout boot options are discovered by
248# reading contents of /Keymaps folder after compilation
249# ------------------------------------------------------
250availableOptions=()
251availableOptions=($( find "${1%/sym/*}/Keymaps" -type f -depth 1 -name '*.lyt' | sed 's|.*/||;s|\.lyt||' ))
252# Adjust array contents to match expected format
253# for boot options which is: name:key=value
254for (( i = 0 ; i < ${#availableOptions[@]} ; i++ ))
255do
256availableOptions[i]=${availableOptions[i]}":KeyLayout="${availableOptions[i]}
257done
258
259# to indicate exclusive option, call buildoptionalsettings with the 2nd parameter set to 1 .
260buildoptionalsettings "$1" "0" "keylayout"
261
262((xmlindent--))
263outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
264
265# End build KeyLayout options packages
266
267((xmlindent--))
268outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
269
270# End build options packages
271
272# build theme packages
273echo "================= Themes ================="
274outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Themes\">"
275choices[$((choicescount++))]="<choice\n\tid=\"Themes\"\n\ttitle=\"Themes_title\"\n\tdescription=\"Themes_description\"\n>\n</choice>\n"
276((xmlindent++))
277
278# Using themes section from Azi's/package branch.
279packagesidentity="org.chameleon.themes"
280artwork="${1%/sym/package}/artwork/themes"
281themes=($( find "${artwork}" -type d -depth 1 -not -name '.svn' ))
282for (( i = 0 ; i < ${#themes[@]} ; i++ ))
283do
284theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
285mkdir -p "${1}/${theme}/Root/"
286rsync -r --exclude=.svn "${themes[$i]}/" "${1}/${theme}/Root/${theme}"
287echo "[BUILD] ${theme}"
288buildpackage "${1}/${theme}" "/$chamTemp/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
289done
290
291((xmlindent--))
292outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
293# End build theme packages
294# End build Extras package
295
296# build post install package
297echo "================= Post ================="
298mkdir -p ${1}/Post/Root
299mkdir -p ${1}/Post/Scripts
300cp -f ${pkgroot}/Scripts/Main/Post/* ${1}/Post/Scripts
301cp -f ${pkgroot}/Scripts/Sub/InstallLog.sh ${1}/Post/Scripts
302ditto --noextattr --noqtn ${1%/*/*}/revision ${1}/Post/Scripts/Resources/revision
303ditto --noextattr --noqtn ${1%/*/*}/version ${1}/Post/Scripts/Resources/version
304echo "[BUILD] Post "
305buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
306outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
307
308# build meta package
309
310makedistribution "${1}" "${2}" "${3}" "${4}" "${5}"
311
312# clean up
313
314rm -R -f "${1}"
315
316}
317
318fixperms ()
319{
320# $1 path
321find "${1}" -type f -exec chmod 644 {} \;
322find "${1}" -type d -exec chmod 755 {} \;
323chown -R 0:0 "${1}"
324}
325
326buildoptionalsettings()
327{
328# $1 Path to package to build containing Root and or Scripts
329# $2 = exclusiveFlag
330# S3 = exclusiveName
331
332# ------------------------------------------------------
333# if exclusiveFlag=1 then re-build array
334# adding extra boot option at beginning to give
335
336# ------------------------------------------------------
337if [ ${2} = "1" ]; then
338tempArray=("${availableOptions[@]}")
339availableOptions=()
340availableOptions[0]="ChooseNone-"$3":DONT=ADD"
341position=0
342totalItems="${#tempArray[@]}"
343for (( position = 0 ; position < $totalItems ; position++ ))
344do
345availableOptions[$position+1]=${tempArray[${position}]}
346done
347fi
348
349# ------------------------------------------------------
350# Loop through options in array and process each in turn
351# ------------------------------------------------------
352for (( c = 0 ; c < ${#availableOptions[@]} ; c++ ))
353do
354textLine=${availableOptions[c]}
355# split line - taking all before ':' as option name
356# and all after ':' as key/value
357optionName=${textLine%:*}
358keyValue=${textLine##*:}
359
360# create folders required for each boot option
361mkdir -p "${1}/$optionName/Root/"
362
363# create dummy file with name of key/value
364echo "" > "${1}/$optionName/Root/${keyValue}"
365
366echo "[BUILD] ${optionName} "
367
368# ------------------------------------------------------
369# Before calling buildpackage, add exclusive options
370# to buildpackage call if requested.
371# ------------------------------------------------------
372if [ $2 = "1" ]; then
373
374# Prepare individual string parts
375stringStart="selected=\""
376stringBefore="exclusive(choices['"
377stringAfter="']) &amp;&amp; "
378stringEnd="'])\""
379x=${stringStart}${stringBefore}
380
381# build string for sending to buildpackage
382totalItems="${#availableOptions[@]}"
383lastItem=$((totalItems-1))
384
385for (( r = 0 ; r < ${totalItems} ; r++ ))
386do
387textLineTemp=${availableOptions[r]}
388optionNameTemp=${textLineTemp%:*}
389if [ "${optionNameTemp}" != "${optionName}" ]; then
390 x="${x}${optionNameTemp}"
391 # Only add these to end of string up to the one before the last item
392if [ $r -lt $lastItem ]; then
393x="${x}${stringAfter}${stringBefore}"
394fi
395fi
396done
397x="${x}${stringEnd}"
398buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\" ${x}" >/dev/null 2>&1
399else
400buildpackage "${1}/${optionName}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
401fi
402done
403}
404
405buildpackage ()
406{
407# $1 Path to package to build containing Root and or Scripts
408# $2 Install Location
409# $3 Size
410# $4 Options
411
412if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
413
414local packagename="${1##*/}"
415local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
416find "${1}" -name '.DS_Store' -delete
417local filecount=$( find "${1}/Root" | wc -l )
418if [ "${3}" ]; then
419local installedsize="${3}"
420else
421local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
422fi
423local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
424
425#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
426
427header+="identifier=\"${identifier}\" "
428header+="version=\"${version}\" "
429
430[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
431
432header+="auth=\"root\">\n"
433header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
434rm -R -f "${1}/Temp"
435
436[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
437[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
438
439if [ -d "${1}/Scripts" ]; then
440header+="\t<scripts>\n"
441for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
442do
443header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
444done
445header+="\t</scripts>\n"
446chown -R 0:0 "${1}/Scripts"
447pushd "${1}/Scripts" >/dev/null
448find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
449popd >/dev/null
450fi
451
452header+="</pkg-info>"
453echo -e "${header}" > "${1}/Temp/PackageInfo"
454pushd "${1}/Root" >/dev/null
455find . -print | cpio -o -z -H cpio > "../Temp/Payload"
456popd >/dev/null
457pushd "${1}/Temp" >/dev/null
458
459xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
460
461popd >/dev/null
462
463outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${packagename// /}\"/>"
464
465if [ "${4}" ]; then
466local choiceoptions="${indent[$xmlindent]}${4}\n"
467fi
468choices[$((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"
469
470rm -R -f "${1}"
471fi
472}
473
474makedistribution ()
475{
476rm -f "${1%/*}/${packagename// /}"*.pkg
477
478find "${1}" -type f -name '*.pkg' -depth 1 | while read component
479do
480mkdir -p "${1}/${packagename}/${component##*/}"
481pushd "${1}/${packagename}/${component##*/}" >/dev/null
482xar -x -f "${1%}/${component##*/}"
483popd >/dev/null
484done
485
486ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
487ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
488
489find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
490
491for (( i=0; i < ${#outline[*]} ; i++));
492do
493echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
494done
495
496for (( i=0; i < ${#choices[*]} ; i++));
497do
498echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
499done
500
501echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
502
503perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
504perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
505
506# Adding Developer and credits
507perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
508perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
509perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
510
511stage=${stage/RC/Release Candidate }
512stage=${stage/FINAL/2.0 Final}
513perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
514
515find "${1}/${packagename}" -name '.DS_Store' -delete
516pushd "${1}/${packagename}" >/dev/null
517xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
518popd >/dev/null
519
520# Here is the place for assign a Icon to the pkg
521# command use to generate the file:
522# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
523# ----
524 ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
525 DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
526 Rez -append tempicns.rsrc -o "${1%/*}/$packagename-${version}-r$revision.pkg"
527 SetFile -a C "${1%/*}/$packagename-${version}-r$revision.pkg"
528 rm -f tempicns.rsrc
529 rm -rf "${pkgroot}/Icons/Icons"
530# End
531
532md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
533echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
534echo ""
535
536echo -e $COL_GREEN"--------------------------"$COL_RESET
537echo -e $COL_GREEN"Building process complete!"$COL_RESET
538echo -e $COL_GREEN"--------------------------"$COL_RESET
539echo ""
540echo -e $COL_GREEN"Build info."
541echo -e $COL_GREEN"==========="
542echo -e $COL_BLUE"Package name:"$COL_RESET"$packagename-${version}-r$revision.pkg"
543echo -e $COL_BLUE"MD5:"$COL_RESET"$md5"
544echo -e $COL_BLUE"Version:"$COL_RESET"$version"
545echo -e $COL_BLUE"Stage:"$COL_RESET"$stage"
546echo -e $COL_BLUE"Date/Time:"$COL_RESET"$builddate"
547echo ""
548
549}
550
551main "${1}" "${2}" "${3}" "${4}" "${5}"
552
553

Archive Download this file

Revision: 1625