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/Standard/* ${1}/Standard/Scripts
91 cp -f ${pkgroot}/Scripts/Install/* ${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 "
96buildpackage "${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/EFI/* ${1}/EFI/Scripts
103 cp -f ${pkgroot}/Scripts/Install/* ${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 echo "================= Options ================="
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# build base options packages
192packagesidentity="org.chameleon.options"
193options=($( find "${pkgroot}/Scripts/BaseOptions" -type d -depth 1 -not -name '.svn' ))
194for (( i = 0 ; i < ${#options[@]} ; i++ ))
195do
196mkdir -p "${1}/${options[$i]##*/}/Root"
197cp "${options[$i]}"/* "${1}/${options[$i]##*/}/Root"
198echo "[BUILD] ${options[$i]##*/} "
199buildpackage "${1}/${options[$i]##*/}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
200done
201# End build base options packages
202
203# build KeyLayout options packages
204echo "================= Keymaps Options ================="
205outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"KeyLayout\">"
206choices[$((choicescount++))]="<choice\n\tid=\"KeyLayout\"\n\ttitle=\"KeyLayout_title\"\n\tdescription=\"KeyLayout_description\"\n>\n</choice>\n"
207((xmlindent++))
208packagesidentity="org.chameleon.options.keylayout"
209keymaps=($( find "${1%/sym/*}/Keymaps" -type f -depth 1 -name '*.lyt' | sed 's|.*/||;s|\.lyt||' ))
210for (( i = 0 ; i < ${#keymaps[@]} ; i++ ))
211do
212mkdir -p "${1}/${keymaps[$i]##*/}/Root/"
213echo "dummy file" >"${1}/${keymaps[$i]##*/}/Root/KeyLayout=${keymaps[$i]##*/}"
214echo "[BUILD] ${keymaps[$i]##*/} "
215buildpackage "${1}/${keymaps[$i]##*/}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
216done
217((xmlindent--))
218outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
219# End build base options packages
220
221# build resolution packages
222echo "================= Res. Options ================="
223outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Resolution\">"
224choices[$((choicescount++))]="<choice\n\tid=\"Resolution\"\n\ttitle=\"Resolution_title\"\n\tdescription=\"Resolution_description\"\n>\n</choice>\n"
225((xmlindent++))
226packagesidentity="org.chameleon.options.resolution"
227resolutions=($( find "${pkgroot}/Scripts/Resolutions" -type d -depth 1 -not -name '.svn' ))
228for (( i = 0 ; i < ${#resolutions[@]} ; i++ ))
229do
230mkdir -p "${1}/${resolutions[$i]##*/}/Root/"
231cp "${resolutions[$i]}"/* "${1}/${resolutions[$i]##*/}/Root"
232echo "[BUILD] ${resolutions[$i]##*/} "
233buildpackage "${1}/${resolutions[$i]##*/}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
234done
235((xmlindent--))
236outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
237# End build resolution packages
238
239# build Advanced packages
240echo "================= Adv. Options ================="
241outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Advanced\">"
242choices[$((choicescount++))]="<choice\n\tid=\"Advanced\"\n\ttitle=\"Advanced_title\"\n\tdescription=\"Advanced_description\"\n>\n</choice>\n"
243((xmlindent++))
244
245packagesidentity="org.chameleon.options.advanced"
246optionsadv=($( find "${pkgroot}/Scripts/Advanced" -type d -depth 1 -not -name '.svn' ))
247for (( i = 0 ; i < ${#optionsadv[@]} ; i++ ))
248do
249mkdir -p "${1}/${optionsadv[$i]##*/}/Root"
250cp "${optionsadv[$i]}"/* "${1}/${optionsadv[$i]##*/}/Root"
251echo "[BUILD] ${optionsadv[$i]##*/} "
252buildpackage "${1}/${optionsadv[$i]##*/}" "/$chamTemp/options" "" "start_selected=\"false\"" >/dev/null 2>&1
253done
254((xmlindent--))
255outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
256# End build Advanced packages
257
258((xmlindent--))
259outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
260# End build options packages
261
262# build theme packages
263echo "================= Themes ================="
264outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"Themes\">"
265choices[$((choicescount++))]="<choice\n\tid=\"Themes\"\n\ttitle=\"Themes_title\"\n\tdescription=\"Themes_description\"\n>\n</choice>\n"
266((xmlindent++))
267
268# Using themes section from Azi's/package branch.
269packagesidentity="org.chameleon.themes"
270artwork="${1%/sym/package}/artwork/themes"
271themes=($( find "${artwork}" -type d -depth 1 -not -name '.svn' ))
272for (( i = 0 ; i < ${#themes[@]} ; i++ ))
273do
274theme=$( echo ${themes[$i]##*/} | awk 'BEGIN{OFS=FS=""}{$1=toupper($1);print}' )
275mkdir -p "${1}/${theme}/Root/"
276rsync -r --exclude=.svn "${themes[$i]}/" "${1}/${theme}/Root/${theme}"
277echo "[BUILD] ${theme}"
278buildpackage "${1}/${theme}" "/$chamTemp/Extra/Themes" "" "start_selected=\"false\"" >/dev/null 2>&1
279done
280
281((xmlindent--))
282outline[$((outlinecount++))]="${indent[$xmlindent]}\t</line>"
283# End build theme packages
284# End build Extras package
285
286# build post install package
287echo "================= Post ================="
288mkdir -p ${1}/Post/Root
289mkdir -p ${1}/Post/Scripts
290cp -f ${pkgroot}/Scripts/Post/* ${1}/Post/Scripts
291echo "[BUILD] Post "
292buildpackage "${1}/Post" "/" "" "start_visible=\"false\" start_selected=\"true\"" >/dev/null 2>&1
293outline[$((outlinecount++))]="${indent[$xmlindent]}</choices-outline>"
294
295# build meta package
296
297makedistribution "${1}" "${2}" "${3}" "${4}" "${5}"
298
299# clean up
300
301rm -R -f "${1}"
302
303}
304
305fixperms ()
306{
307# $1 path
308find "${1}" -type f -exec chmod 644 {} \;
309find "${1}" -type d -exec chmod 755 {} \;
310chown -R 0:0 "${1}"
311}
312
313buildpackage ()
314{
315# $1 Path to package to build containing Root and or Scripts
316# $2 Install Location
317# $3 Size
318# $4 Options
319
320if [ -d "${1}/Root" ] && [ "${1}/Scripts" ]; then
321
322local packagename="${1##*/}"
323local identifier=$( echo ${packagesidentity}.${packagename//_/.} | tr [:upper:] [:lower:] )
324find "${1}" -name '.DS_Store' -delete
325local filecount=$( find "${1}/Root" | wc -l )
326if [ "${3}" ]; then
327local installedsize="${3}"
328else
329local installedsize=$( du -hkc "${1}/Root" | tail -n1 | awk {'print $1'} )
330fi
331local header="<?xml version=\"1.0\"?>\n<pkg-info format-version=\"2\" "
332
333#[ "${3}" == "relocatable" ] && header+="relocatable=\"true\" "
334
335header+="identifier=\"${identifier}\" "
336header+="version=\"${version}\" "
337
338[ "${2}" != "relocatable" ] && header+="install-location=\"${2}\" "
339
340header+="auth=\"root\">\n"
341header+="\t<payload installKBytes=\"${installedsize##* }\" numberOfFiles=\"${filecount##* }\"/>\n"
342rm -R -f "${1}/Temp"
343
344[ -d "${1}/Temp" ] || mkdir -m 777 "${1}/Temp"
345[ -d "${1}/Root" ] && mkbom "${1}/Root" "${1}/Temp/Bom"
346
347if [ -d "${1}/Scripts" ]; then
348header+="\t<scripts>\n"
349for script in $( find "${1}/Scripts" -type f \( -name 'pre*' -or -name 'post*' \) )
350do
351header+="\t\t<${script##*/} file=\"./${script##*/}\"/>\n"
352done
353header+="\t</scripts>\n"
354chown -R 0:0 "${1}/Scripts"
355pushd "${1}/Scripts" >/dev/null
356find . -print | cpio -o -z -H cpio > "../Temp/Scripts"
357popd >/dev/null
358fi
359
360header+="</pkg-info>"
361echo -e "${header}" >> ~/Desktop/header
362echo -e "${header}" > "${1}/Temp/PackageInfo"
363pushd "${1}/Root" >/dev/null
364find . -print | cpio -o -z -H cpio > "../Temp/Payload"
365popd >/dev/null
366pushd "${1}/Temp" >/dev/null
367
368xar -c -f "${1%/*}/${packagename// /}.pkg" --compression none .
369
370popd >/dev/null
371
372outline[$((outlinecount++))]="${indent[$xmlindent]}\t<line choice=\"${packagename// /}\"/>"
373
374if [ "${4}" ]; then
375local choiceoptions="${indent[$xmlindent]}${4}\n"
376fi
377choices[$((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"
378
379rm -R -f "${1}"
380fi
381}
382
383makedistribution ()
384{
385rm -f "${1%/*}/${packagename// /}"*.pkg
386
387find "${1}" -type f -name '*.pkg' -depth 1 | while read component
388do
389mkdir -p "${1}/${packagename}/${component##*/}"
390pushd "${1}/${packagename}/${component##*/}" >/dev/null
391xar -x -f "${1%}/${component##*/}"
392popd >/dev/null
393done
394
395ditto --noextattr --noqtn "${pkgroot}/Distribution" "${1}/${packagename}/Distribution"
396ditto --noextattr --noqtn "${pkgroot}/Resources" "${1}/${packagename}/Resources"
397
398find "${1}/${packagename}/Resources" -type d -name '.svn' -exec rm -R -f {} \; 2>/dev/null
399
400for (( i=0; i < ${#outline[*]} ; i++));
401do
402echo -e "${outline[$i]}" >> "${1}/${packagename}/Distribution"
403done
404
405for (( i=0; i < ${#choices[*]} ; i++));
406do
407echo -e "${choices[$i]}" >> "${1}/${packagename}/Distribution"
408done
409
410echo "</installer-gui-script>" >> "${1}/${packagename}/Distribution"
411
412perl -i -p -e "s/%CHAMELEONVERSION%/${version%%-*}/g" `find "${1}/${packagename}/Resources" -type f`
413perl -i -p -e "s/%CHAMELEONREVISION%/${revision}/g" `find "${1}/${packagename}/Resources" -type f`
414
415# Adding Developer and credits
416perl -i -p -e "s/%DEVELOP%/${develop}/g" `find "${1}/${packagename}/Resources" -type f`
417perl -i -p -e "s/%CREDITS%/${credits}/g" `find "${1}/${packagename}/Resources" -type f`
418perl -i -p -e "s/%PKGDEV%/${pkgdev}/g" `find "${1}/${packagename}/Resources" -type f`
419
420stage=${stage/RC/Release Candidate }
421stage=${stage/FINAL/2.0 Final}
422perl -i -p -e "s/%CHAMELEONSTAGE%/${stage}/g" `find "${1}/${packagename}/Resources" -type f`
423
424find "${1}/${packagename}" -name '.DS_Store' -delete
425pushd "${1}/${packagename}" >/dev/null
426xar -c -f "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" --compression none .
427popd >/dev/null
428
429# Here is the place for assign a Icon to the pkg
430# command use to generate the file:
431# ditto -c -k --sequesterRsrc --keepParent Icon.icns Icon.zip
432# ----
433# ditto -xk "${pkgroot}/Icons/pkg.zip" "${pkgroot}/Icons/"
434# DeRez -only icns "${pkgroot}/Icons/Icons/pkg.icns" > tempicns.rsrc
435# Rez -append tempicns.rsrc -o "${1%/*}/$packagename-${version}-r$revision.pkg"
436# SetFile -a C "${1%/*}/$packagename-${version}-r$revision.pkg"
437# rm -f tempicns.rsrc
438# rm -rf "${pkgroot}/Icons/Icons"
439# End
440
441md5=$( md5 "${1%/*}/${packagename// /}-${version}-r${revision}.pkg" | awk {'print $4'} )
442echo "MD5 (${packagename// /}-${version}-r${revision}.pkg) = ${md5}" > "${1%/*}/${packagename// /}-${version}-r${revision}.pkg.md5"
443echo ""
444
445echo -e $COL_GREEN"--------------------------"$COL_RESET
446echo -e $COL_GREEN"Building process complete!"$COL_RESET
447echo -e $COL_GREEN"--------------------------"$COL_RESET
448echo ""
449echo -e $COL_GREEN"Build info."
450echo -e $COL_GREEN"==========="
451echo -e $COL_BLUE"Package name:"$COL_RESET"$packagename-${version}-r$revision.pkg"
452echo -e $COL_BLUE"MD5:"$COL_RESET"$md5"
453echo -e $COL_BLUE"Version:"$COL_RESET"$version"
454echo -e $COL_BLUE"Stage:"$COL_RESET"$stage"
455echo -e $COL_BLUE"Date/Time:"$COL_RESET"$builddate"
456echo ""
457
458}
459
460main "${1}" "${2}" "${3}" "${4}" "${5}"
461
462

Archive Download this file

Revision: 1577