From 5004231308a08ba0e181e47c9d20d37d573045d2 Mon Sep 17 00:00:00 2001 From: Elijah R <62162399+elijahr2411@users.noreply.github.com> Date: Sat, 15 Jan 2022 16:32:02 -0500 Subject: [PATCH 1/2] Add arch installation instructions Adds instructions for installation through AUR on Arch Linux and derivatives --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index cdc983b9..ffc34276 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,20 @@ Now you can build and install it: make sudo make install ``` +### Arch Linux and derivatives +idevicerestore is available in the [AUR](https://aur.archlinux.org/packages/idevicerestore) +Install Dependencies: +```shell +sudo pacman --needed -S git curl libimobiledevice libirecovery libplist libzip openssl zlib +``` +Install idevicerestore from AUR: +```shell +git clone https://aur.archlinux.org/idevicerestore.git +cd idevicerestore +makepkg +sudo pacman -U idevicerestore-*.pkg.tar.zst +``` **Important** idevicerestore requires a properly installed [usbmuxd](https://github.com/libimobiledevice/usbmuxd.git) From 83874339a6e92704ff607b62191a25c0545ad4f7 Mon Sep 17 00:00:00 2001 From: Elijah R <62162399+elijahr2411@users.noreply.github.com> Date: Sat, 15 Jan 2022 16:48:09 -0500 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffc34276..2292b749 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ idevicerestore is available in the [AUR](https://aur.archlinux.org/packages/idev Install Dependencies: ```shell -sudo pacman --needed -S git curl libimobiledevice libirecovery libplist libzip openssl zlib +sudo pacman --needed -S git curl libimobiledevice libirecovery libplist libzip openssl zlib usbmuxd ``` Install idevicerestore from AUR: ```shell