-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
37 lines (32 loc) · 819 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
# Install dependencies with brew
brew install autoconf automake libtool pkg-config glib libimobiledevice libplist cython openssl
# Install libimobiledevice-glue HEAD
git clone https://github.com/libimobiledevice/libimobiledevice-glue.git
cd libimobiledevice-glue
./autogen.sh
make
make install
cd ..
# Install libusbmuxd HEAD
git clone https://github.com/libimobiledevice/libusbmuxd.git
cd libusbmuxd
./autogen.sh
make
make install
sudo make install
cd ..
# Install libimobiledevice HEAD
git clone https://github.com/libimobiledevice/libimobiledevice.git
cd libimobiledevice
export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl/lib/pkgconfig"
./autogen.sh
make
sudo make install
cd ..
# Install ifuse HEAD
git clone https://github.com/libimobiledevice/ifuse.git
cd ifuse
./autogen.sh
make
sudo make install