Skip to content

Instantly share code, notes, and snippets.

View krisanovdev's full-sized avatar
🏈
Focusing

Anton Krisanov krisanovdev

🏈
Focusing
View GitHub Profile
@boxingsquirrel
boxingsquirrel / libimobiledevice-build-without-root.sh
Created February 27, 2011 18:25
Build libimobiledevice from source easily...
echo "Building libplist..."
git clone http://cgit.sukimashita.com/libplist.git/ > /dev/null
cd libplist
mkdir build
cd build
cmake --prefix=/usr ..
make
sudo make install
cd ../../