Created
April 23, 2021 10:05
-
-
Save velitasali/ee7199f73d78a5f6ba08de3a7b256f7a to your computer and use it in GitHub Desktop.
idevicerestore aur package with large timeout values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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