#!/usr/bin/env bash if [[ ${BASH_VERSION} != 4* ]]; then echo "bash 4.0 required" 1>&2 exit 1 fi shopt -s extglob shopt -s nullglob PATH=/Library/Cydia/bin:$PATH rm -rf sysroot mkdir sysroot cd sysroot repository=http://apt.saurik.com/ distribution=tangelo component=main architecture=iphoneos-arm wget -qO- "${repository}dists/${distribution}/${component}/binary-${architecture}/Packages.bz2" | bzcat | { regex='^([^ \t]*): *(.*)' declare -A fields while IFS= read -r line; do if [[ ${line} == '' ]]; then package=${fields[package]} if [[ ${package} == *(apr|apr-lib|apt7|apt7-lib|coreutils|mobilesubstrate|pcre) ]]; then filename=${fields[filename]} wget -O "${package}.deb" "${repository}${filename}" dpkg-deb -x "${package}.deb" . fi unset fields declare -A fields elif [[ ${line} =~ ${regex} ]]; then name=${BASH_REMATCH[1],,} value=${BASH_REMATCH[2]} fields[${name}]=${value} fi done } rm -f *.deb mkdir -p usr/include cd usr/include mkdir CoreFoundation wget -O CoreFoundation/CFBundlePriv.h "http://www.opensource.apple.com/source/CF/CF-550/CFBundlePriv.h?txt" wget -O CoreFoundation/CFPriv.h "http://www.opensource.apple.com/source/CF/CF-550/CFPriv.h?txt" wget -O CoreFoundation/CFUniChar.h "http://www.opensource.apple.com/source/CF/CF-550/CFUniChar.h?txt" 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' 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 mkdir WebCore cp -a WebCore.d/{*,rendering/style,platform/graphics/transforms}/*.h WebCore cp -a WebCore.d/platform/{animation,graphics,network,text}/*.h WebCore cp -a WebCore.d/{accessibility,platform{,/{graphics,network,text}}}/{cf,mac,iphone}/*.h WebCore cp -a WebCore.d/bridge/objc/*.h WebCore wget -O JavaScriptCore.tgz http://www.opensource.apple.com/tarballs/JavaScriptCore/JavaScriptCore-554.1.tar.gz #tar -zx --transform 's@^[^/]*/API/@JavaScriptCore/@' -f JavaScriptCore.tgz $(tar -ztf JavaScriptCore.tgz | grep '/API/[^/]*.h$') tar -zx \ --transform 's@^[^/]*/@@' \ --transform 's@^icu/@@' \ -f JavaScriptCore.tgz $(tar -ztf JavaScriptCore.tgz | sed -e ' /\/icu\/unicode\/.*\.h$/ p; /\/profiler\/.*\.h$/ p; /\/runtime\/.*\.h$/ p; /\/wtf\/.*\.h$/ p; d; ') fi for framework in ApplicationServices CoreServices IOKit IOSurface JavaScriptCore QuartzCore WebKit; do ln -s /System/Library/Frameworks/"${framework}".framework/Headers "${framework}" done for framework in /System/Library/Frameworks/CoreServices.framework/Frameworks/*.framework; do name=${framework} name=${name%.framework} name=${name##*/} ln -s "${framework}/Headers" "${name}" done mkdir -p Cocoa cat >Cocoa/Cocoa.h <GraphicsServices/GraphicsServices.h <