Created
March 19, 2013 19:29
-
-
Save conradev/5199342 to your computer and use it in GitHub Desktop.
This script downloads and extracts libraries from Cydia packages and places them into your Theos installation.
This file contains hidden or 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 | |
# The only tool used here that is not included with OS X is `lzma`. | |
# It is only used when extracting packages with LZMA data compression. | |
echo "Downloading list of packages..." | |
REPOS=('http://apt.thebigboss.org/repofiles/cydia'); # Others, such as ModMyi can be added here | |
for i in "${!REPOS[@]}"; do | |
curl -s -L "${REPOS[i]}/dists/stable/main/binary-iphoneos-arm/Packages.bz2" | bzcat -- >> "Packages.${i}" | |
done | |
download() { | |
echo " Downloading $1..." | |
for i in "${!REPOS[@]}"; do | |
PACKAGE_URL=$(grep "$1.*\.deb$" Packages.${i} | awk '{print $2}') | |
if [ -n "$PACKAGE_URL" ]; then | |
PACKAGE_URL="${REPOS[i]}/$PACKAGE_URL" | |
PACKAGE=$(basename $PACKAGE_URL) | |
curl -s -L "$PACKAGE_URL" > $PACKAGE | |
shift | |
if [ -n "$(ar -t $PACKAGE | grep data.tar.lzma)" ]; then | |
ar -p $PACKAGE data.tar.lzma | tar --lzma -xf - ${@} | |
else | |
ar -p $PACKAGE data.tar.gz | tar xzf - ${@} | |
fi | |
rm $PACKAGE | |
fi | |
done | |
} | |
download 'libactivator' './usr/lib/libactivator.dylib' './usr/include/libactivator/libactivator.h' | |
download 'layersnapshotter' './usr/lib/liblayersnapshotter.dylib' './usr/include/layersnapshotter.h' | |
download 'box2d' './usr/lib/libbox2d.dylib' './usr/include/Box2D/*' | |
if [ -d "$PWD/theos" ]; then | |
THEOS=$PWD/theos | |
fi | |
echo "Installing libraries into $THEOS" | |
cp -rf $PWD/usr/include/* $THEOS/include/ | |
cp -rf $PWD/usr/lib/* $THEOS/lib/ | |
rm -r usr | |
rm Packages.* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment