-
-
Save axot/9870047 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export THEOS=`pwd`/theos | |
# clone theos.git | |
git clone git://github.com/DHowett/theos.git | |
# clone iphoneheaders.git | |
cd $THEOS | |
mv include include.bak | |
git clone git://github.com/rpetrich/iphoneheaders.git include | |
for FILE in include.bak/*.h; do mv $FILE include/; done | |
rm -rf include.bak/ | |
# get IOSurfaceAPI.h | |
cd $THEOS/include/IOSurface/ | |
curl -O https://raw.github.com/javacom/toolchain4/master/Projects/IOSurfaceAPI.h | |
# clone CaptainHook.git | |
cd $THEOS/include/ | |
git clone git://github.com/rpetrich/CaptainHook.git | |
# clone theos-nic-templates.git | |
cd $THEOS/templates/ | |
git clone git://github.com/orikad/theos-nic-templates.git | |
# get libsubstrate.dylib | |
msdeb="mobilesubstrate_0.9.3366-1_iphoneos-arm.deb" | |
cd $THEOS | |
curl -OL http://apt.saurik.com/debs/$msdeb | |
dpkg-deb -x $msdeb mobilesubstrate | |
cp mobilesubstrate/Library/Frameworks/CydiaSubstrate.framework/CydiaSubstrate $THEOS/lib/libsubstrate.dylib | |
rm $msdeb | |
#get libactivator.dylib | |
echo "Downloading Activator header and library..." | |
ACTIVATOR_REPO="http://apt.thebigboss.org/repofiles/cydia" | |
curl -s -L "${ACTIVATOR_REPO}/dists/stable/main/binary-iphoneos-arm/Packages.bz2" > Packages.bz2 | |
pkg_path=$(bzcat Packages.bz2 | grep "debs2.0/libactivator" | awk '{print $2}') | |
pkg=$(basename $pkg_path) | |
curl -s -L "${ACTIVATOR_REPO}/${pkg_path}" > $pkg | |
ar -p $pkg data.tar.gz | tar -zxf - ./usr/include/libactivator/libactivator.h ./usr/lib/libactivator.dylib | |
mv ./usr/include/libactivator/* $THEOS/include/libactivator | |
mv ./usr/lib/libactivator.dylib $THEOS/lib | |
rm -rf usr Packages.bz2 $pkg | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment