3 if [[ ${BASH_VERSION} != 4* ]]; then
4 echo "bash 4.0 required" 1>&2
14 for command in unlzma wget
; do
15 if ! which "${command}" &>/dev
/null
; then
16 echo "Cannot run \`${command}\`. Please read compiling.txt." 1>&2
21 if tar --help | grep bsdtar
&>/dev
/null
; then
22 echo "Running \`tar\` is bsdtar :(. Please read compiling.txt." 1>&2
30 repository
=http
://apt.saurik.com
/
33 architecture
=iphoneos
-arm
43 wget
-O "${package}.deb" "${url}"
45 compressed
=data.
tar.
${z}
47 if ar -x "${package}.deb" "${compressed}" 2>/dev
/null
; then
48 ${dpkgz[${z}]} "${compressed}"
53 if ! [[ -e data.
tar ]]; then
54 echo "unable to extract package" 1>&2
65 urls
[apr
]=http
://apt.saurik.com
/debs
/apr_1.3
.3-4_iphoneos-arm.deb
66 urls
[apr
-lib]=http
://apt.saurik.com
/debs
/apr
-lib_1.3
.3-2_iphoneos-arm.deb
67 urls
[apt7
]=http
://apt.saurik.com
/debs
/apt7_0.7
.25.3-6_iphoneos-arm.deb
68 urls
[apt7
-lib]=http
://apt.saurik.com
/debs
/apt7
-lib_0.7
.25.3-9_iphoneos-arm.deb
69 urls
[coreutils
]=http
://apt.saurik.com
/debs
/coreutils_7.4
-11_iphoneos-arm.deb
70 urls
[mobilesubstrate
]=http
://apt.saurik.com
/debs
/mobilesubstrate_0.9
.3367-1_iphoneos-arm.deb
71 urls
[pcre
]=http
://apt.saurik.com
/debs
/pcre_7.9
-3_iphoneos-arm.deb
74 wget
-qO- "${repository}dists/${distribution}/${component}/binary-${architecture}/Packages.bz2" | bzcat
| {
75 regex
='^([^ \t]*): *(.*)'
78 while IFS
= read -r line
; do
79 if [[ ${line} == '' ]]; then
80 package
=${fields[package]}
81 if [[ -n ${urls[${package}]} ]]; then
82 filename
=${fields[filename]}
83 urls
[${package}]=${repository}${filename}
88 elif [[ ${line} =~
${regex} ]]; then
89 name
=${BASH_REMATCH[1],,}
90 value
=${BASH_REMATCH[2]}
91 fields
[${name}]=${value}
97 for package
in "${!urls[@]}"; do
98 extract
"${package}" "${urls[${package}]}"
103 if substrate
=$(readlink usr/include/substrate.h); then
104 if [[ ${substrate} == /* ]]; then
105 ln -sf "../..${substrate}" usr
/include
/substrate.h
113 wget
-O CoreFoundation
/CFBundlePriv.h
"http://www.opensource.apple.com/source/CF/CF-550/CFBundlePriv.h?txt"
114 wget
-O CoreFoundation
/CFPriv.h
"http://www.opensource.apple.com/source/CF/CF-550/CFPriv.h?txt"
115 wget
-O CoreFoundation
/CFUniChar.h
"http://www.opensource.apple.com/source/CF/CF-550/CFUniChar.h?txt"
119 wget
-O WebCore
/WebCoreThread.h
'http://www.opensource.apple.com/source/WebCore/WebCore-658.28/wak/WebCoreThread.h?txt'
120 wget
-O WebCore
/WebEvent.h
'http://www.opensource.apple.com/source/WebCore/WebCore-658.28/platform/iphone/WebEvent.h?txt'
122 wget
-O WebCore.tgz http
://www.opensource.apple.com
/tarballs
/WebCore
/WebCore
-658.28.
tar.gz
123 tar -zx --transform 's@^[^/]*/@WebCore.d/@' -f WebCore.tgz
126 cp -a WebCore.d
/{*,rendering
/style
,platform
/graphics
/transforms
}/*.h WebCore
127 cp -a WebCore.d
/platform
/{animation
,graphics
,network
,text
}/*.h WebCore
128 cp -a WebCore.d
/{accessibility
,platform
{,/{graphics
,network
,text
}}}/{cf
,mac
,iphone
}/*.h WebCore
129 cp -a WebCore.d
/bridge
/objc
/*.h WebCore
131 wget
-O JavaScriptCore.tgz http
://www.opensource.apple.com
/tarballs
/JavaScriptCore
/JavaScriptCore
-554.1.
tar.gz
132 #tar -zx --transform 's@^[^/]*/API/@JavaScriptCore/@' -f JavaScriptCore.tgz $(tar -ztf JavaScriptCore.tgz | grep '/API/[^/]*.h$')
134 --transform 's@^[^/]*/@@' \
135 --transform 's@^icu/@@' \
136 -f JavaScriptCore.tgz $
(tar -ztf JavaScriptCore.tgz
| sed -e '
137 /\/icu\/unicode\/.*\.h$/ p;
138 /\/profiler\/.*\.h$/ p;
139 /\/runtime\/.*\.h$/ p;
145 for framework
in ApplicationServices CoreServices IOKit IOSurface JavaScriptCore WebKit
; do
146 ln -s /System
/Library
/Frameworks
/"${framework}".framework
/Headers
"${framework}"
149 for framework
in /System
/Library
/Frameworks
/CoreServices.framework
/Frameworks
/*.framework
; do
151 name
=${name%.framework}
153 ln -s "${framework}/Headers" "${name}"
157 cat >Cocoa
/Cocoa.h
<<EOF
158 #define NSImage UIImage
159 #define NSView UIView
160 #define NSWindow UIWindow
162 #define NSPoint CGPoint
163 #define NSRect CGRect
165 #define NSPasteboard UIPasteboard
166 #define NSSelectionAffinity int
167 @protocol NSUserInterfaceValidations;
170 mkdir -p GraphicsServices
171 cat >GraphicsServices
/GraphicsServices.h
<<EOF
172 typedef struct __GSEvent *GSEventRef;
173 typedef struct __GSFont *GSFontRef;