blob: f9cc6c8b08f4fc9b6529cad65061f1c74ea3a466 (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Maintainer: Ivan Shapovalov <intelfx@intelfx.name>
# Contributor: Matthew Bauer <mjbauer95@gmail.com>
pkgname=idevicerestore-git
epoch=1
pkgver=1.0.0.r190.gdf06f4d
pkgrel=1
pkgdesc="Restore/upgrade firmware of iOS devices"
arch=('i686' 'x86_64')
url="http://www.libimobiledevice.org"
license=('LGPL3')
depends=('libzip' 'openssl' 'curl' 'libimobiledevice-glue-git' 'libplist-git' 'libimobiledevice-git' 'libirecovery-git' 'libtatsu-git')
makedepends=('git')
source=("git+https://github.com/libimobiledevice/idevicerestore"
'0001-configure.ac-check-for-pthreads.patch')
sha256sums=('SKIP'
'1eef0bb3be0e88658c0b32a3e707fac9467f8d03dffd508484db410156c16003')
pkgver() {
cd idevicerestore
git describe --long --tags | sed 's/[^-]*-g/r&/;s/-/./g'
}
prepare() {
cd idevicerestore
for p in "${source[@]}"; do
if [[ ${p} == *.patch ]]; then
git apply -3 "${srcdir}/${p}"
fi
done
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd idevicerestore
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
#sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool # not needed anymore (libtool honors $LDFLAGS now)
make
}
check() {
cd idevicerestore
make check
}
package() {
cd idevicerestore
make DESTDIR="$pkgdir" install
}
|