diff options
author | Potin Lai <potin.lai@quantatw.com> | 2022-03-31 23:49:12 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-03-31 11:54:44 -0700 |
commit | 02f2f6accbfd8cc6bb228794a6da07fd7bba8aa8 (patch) | |
tree | 3b8e6738246f7e7c92126c17e6c558c8cef88895 /meta-oe/recipes-support/idevicerestore | |
parent | 20c0c1874d0ca6c6d73f695be7bcf8947741c8c9 (diff) | |
download | meta-openembedded-02f2f6accbfd8cc6bb228794a6da07fd7bba8aa8.tar.gz |
idevicerestore: add recipe
A command-line application to restore firmware files to iOS devices.
Signed-off-by: Potin Lai <potin.lai@quantatw.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/idevicerestore')
-rw-r--r-- | meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb b/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb new file mode 100644 index 0000000000..fc07c6e698 --- /dev/null +++ b/meta-oe/recipes-support/idevicerestore/idevicerestore_git.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | SUMMARY = "A command-line application to restore firmware files to iOS devices" | ||
2 | LICENSE = "LGPL-3.0-or-later" | ||
3 | LIC_FILES_CHKSUM = "\ | ||
4 | file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02 \ | ||
5 | " | ||
6 | |||
7 | HOMEPAGE = "http://www.libimobiledevice.org/" | ||
8 | |||
9 | DEPENDS = "libirecovery libimobiledevice libzip curl" | ||
10 | |||
11 | PV = "1.0.1+git${SRCPV}" | ||
12 | |||
13 | SRCREV = "280575bb95977241e240ed081a2602d68746443e" | ||
14 | SRC_URI = "git://github.com/libimobiledevice/idevicerestore;protocol=https;branch=master" | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | inherit autotools pkgconfig | ||