]> git.pld-linux.org Git - packages/idevicerestore.git/blob - idevicerestore.spec
- release 4 (libirecovery 1.2.0)
[packages/idevicerestore.git] / idevicerestore.spec
1 Summary:        Command-line application to restore firmware files to iOS devices
2 Summary(pl.UTF-8):      Narzędzie linii poleceń do przywracania plików firmware w urządzeniach iOS
3 Name:           idevicerestore
4 Version:        1.0.0
5 Release:        4
6 License:        LGPL v2.1+
7 Group:          Applications
8 #Source0Download: https://libimobiledevice.org/
9 Source0:        https://github.com/libimobiledevice/idevicerestore/releases/download/%{version}/%{name}-%{version}.tar.bz2
10 # Source0-md5:  72cd746457730875b82589d272138f95
11 Patch0:         %{name}-sh.patch
12 URL:            https://libimobiledevice.org/
13 BuildRequires:  autoconf >= 2.64
14 BuildRequires:  automake
15 BuildRequires:  curl-devel >= 7.0
16 BuildRequires:  libimobiledevice-devel >= 1.3.0
17 BuildRequires:  libirecovery-devel >= 1.0.0
18 BuildRequires:  libplist-devel >= 2.2.0
19 BuildRequires:  libtool
20 BuildRequires:  libzip-devel >= 0.8
21 BuildRequires:  openssl-devel >= 0.9.8
22 BuildRequires:  pkgconfig
23 BuildRequires:  zlib-devel
24 Requires:       libimobiledevice >= 1.3.0
25 Requires:       libirecovery >= 1.0.0
26 Requires:       libplist >= 2.2.0
27 Requires:       libzip >= 0.8
28 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
30 %description
31 The idevicerestore application is a full reimplementation of all
32 granular steps which are performed during the restore of a firmware to
33 a device.
34
35 In general, upgrades and downgrades are possible, however subject to
36 availability of SHSH blobs from Apple for signing the firmare files.
37
38 %description -l pl.UTF-8
39 Aplikacja idevicerestore to pełna reimplementacja wszystkich kroków
40 wykonywanych podczas przywracania firmware'u urządzenia.
41
42 W ogólności możliwe są upgrade'y i downgrade'y, ale zależy to od
43 dostępności blobów SHSH od Apple'a do podpisywania plików firmware'u.
44
45 %prep
46 %setup -q
47 %patch0 -p1
48
49 %build
50 %{__libtoolize}
51 %{__aclocal} -I m4
52 %{__autoconf}
53 %{__autoheader}
54 %{__automake}
55 %configure \
56         --disable-silent-rules
57 %{__make}
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61
62 %{__make} install \
63         DESTDIR=$RPM_BUILD_ROOT
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %files
69 %defattr(644,root,root,755)
70 %doc AUTHORS NEWS README.md
71 %attr(755,root,root) %{_bindir}/idevicerestore
72 %{_mandir}/man1/idevicerestore.1*
This page took 0.213251 seconds and 4 git commands to generate.