Skip to content

Instantly share code, notes, and snippets.

@velitasali
Created April 23, 2021 10:05
Show Gist options
  • Save velitasali/ee7199f73d78a5f6ba08de3a7b256f7a to your computer and use it in GitHub Desktop.
Save velitasali/ee7199f73d78a5f6ba08de3a7b256f7a to your computer and use it in GitHub Desktop.
idevicerestore aur package with large timeout values
# Maintainer: Ivan Shapovalov <[email protected]>
# Contributor: Matthew Bauer <[email protected]>
pkgname=idevicerestore
pkgver=1.0.1
pkgrel=1
pkgdesc="Restore/upgrade firmware of iOS devices"
arch=('i686' 'x86_64')
url="http://www.libimobiledevice.org"
license=('LGPL3')
depends=('libirecovery-git' 'libimobiledevice' 'libzip' 'openssl' 'curl')
makedepends=('git')
source=("git+https://github.com/velitasali/idevicerestore.git")
sha256sums=('SKIP')
prepare() {
cd idevicerestore
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd idevicerestore
./configure --prefix=/usr
make
}
package() {
cd idevicerestore
make DESTDIR="$pkgdir" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment