]> git.saurik.com Git - cydia.git/blobdiff - sysroot.sh
Reloading the data of an arbitrary viewcontroller involves loading its view.
[cydia.git] / sysroot.sh
index 607de65a9c6f272e0da9d55192502b81cbc92bc9..7845792fbca48a1639b13fa80db9a8a61a63b235 100755 (executable)
@@ -62,7 +62,15 @@ function extract() {
 
 declare -A urls
 
-if [[ 1 ]]; then
+urls[apr]=http://apt.saurik.com/debs/apr_1.3.3-4_iphoneos-arm.deb
+urls[apr-lib]=http://apt.saurik.com/debs/apr-lib_1.3.3-2_iphoneos-arm.deb
+urls[apt7]=http://apt.saurik.com/debs/apt7_0.7.25.3-6_iphoneos-arm.deb
+urls[apt7-lib]=http://apt.saurik.com/debs/apt7-lib_0.7.25.3-9_iphoneos-arm.deb
+urls[coreutils]=http://apt.saurik.com/debs/coreutils_7.4-11_iphoneos-arm.deb
+urls[mobilesubstrate]=http://apt.saurik.com/debs/mobilesubstrate_0.9.3367-1_iphoneos-arm.deb
+urls[pcre]=http://apt.saurik.com/debs/pcre_7.9-3_iphoneos-arm.deb
+
+if [[ 0 ]]; then
     wget -qO- "${repository}dists/${distribution}/${component}/binary-${architecture}/Packages.bz2" | bzcat | {
         regex='^([^ \t]*): *(.*)'
         declare -A fields
@@ -70,7 +78,7 @@ if [[ 1 ]]; then
         while IFS= read -r line; do
             if [[ ${line} == '' ]]; then
                 package=${fields[package]}
-                if [[ ${package} == *(apr|apr-lib|apt7|apt7-lib|coreutils|mobilesubstrate|pcre) ]]; then
+                if [[ -n ${urls[${package}]} ]]; then
                     filename=${fields[filename]}
                     urls[${package}]=${repository}${filename}
                 fi
@@ -109,6 +117,7 @@ wget -O CoreFoundation/CFUniChar.h "http://www.opensource.apple.com/source/CF/CF
 if true; then
     mkdir -p WebCore
     wget -O WebCore/WebCoreThread.h 'http://www.opensource.apple.com/source/WebCore/WebCore-658.28/wak/WebCoreThread.h?txt'
+    wget -O WebCore/WebEvent.h 'http://www.opensource.apple.com/source/WebCore/WebCore-658.28/platform/iphone/WebEvent.h?txt'
 else
     wget -O WebCore.tgz http://www.opensource.apple.com/tarballs/WebCore/WebCore-658.28.tar.gz
     tar -zx --transform 's@^[^/]*/@WebCore.d/@' -f WebCore.tgz