Skip to content

Instantly share code, notes, and snippets.

@djgrasss
Forked from iconstate/libimobiledevice-build.sh
Last active February 11, 2019 19:05
Show Gist options
  • Select an option

  • Save djgrasss/49424d1624a7af0fbf52 to your computer and use it in GitHub Desktop.

Select an option

Save djgrasss/49424d1624a7af0fbf52 to your computer and use it in GitHub Desktop.
sudo apt-get update
sudo apt-get install build-essential git\
cmake python-dev cython swig \
libusb-1.0 \
automake autoconf libtool \
libgnutls-dev libglib2.0-dev libxml2-dev libreadline-dev
echo "Building libplist..."
git clone http://cgit.sukimashita.com/libplist.git/
cd libplist
mkdir build
cd build
cmake ..
make
sudo make install
cd ../../
echo "Building usbmuxd..."
git clone http://cgit.sukimashita.com/usbmuxd.git/
cd usbmuxd
mkdir build
cd build
cmake ..
make
sudo make install
cd ../../
echo "Building libimobiledevice..."
git clone http://cgit.sukimashita.com/libimobiledevice.git/
cd libimobiledevice
./autogen.sh
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment