diff options
author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2020-07-27 21:27:20 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-07-28 12:55:35 -0700 |
commit | bd8a13acd8cd09d214ca28e28681ba0afe495bb7 (patch) | |
tree | f609c08e0f7894bc0252cf581aa4e55254c266e7 | |
parent | a764522a4a8b2481fb3e95a7ee38c56561daa8b0 (diff) | |
download | meta-openembedded-bd8a13acd8cd09d214ca28e28681ba0afe495bb7.tar.gz |
libplist: update to 2.2.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/libimobiledevice/libplist_2.2.0.bb (renamed from meta-oe/recipes-extended/libimobiledevice/libplist_2.1.0.bb) | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meta-oe/recipes-extended/libimobiledevice/libplist_2.1.0.bb b/meta-oe/recipes-extended/libimobiledevice/libplist_2.2.0.bb index 36659e752d..408fa8ac0e 100644 --- a/meta-oe/recipes-extended/libimobiledevice/libplist_2.1.0.bb +++ b/meta-oe/recipes-extended/libimobiledevice/libplist_2.2.0.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | SUMMARY = "A library to handle Apple Property List format whereas it's binary or XML" | 1 | SUMMARY = "A library to handle Apple Property List format whereas it's binary or XML" |
2 | 2 | HOMEPAGE = "https://github.com/libimobiledevice/libplist" | |
3 | LICENSE = "GPLv2 & LGPLv2.1" | 3 | LICENSE = "GPLv2 & LGPLv2.1" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \ | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \ |
5 | file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7" | 5 | file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7" |
@@ -8,9 +8,8 @@ DEPENDS = "libxml2 glib-2.0 swig python3" | |||
8 | 8 | ||
9 | inherit autotools pkgconfig python3native | 9 | inherit autotools pkgconfig python3native |
10 | 10 | ||
11 | SRCREV = "3df02d4d0e9008771e8622fdc10de8333b3f0d85" | 11 | SRCREV = "c5a30e9267068436a75b5d00fcbf95cb9c1f4dcd" |
12 | SRC_URI = "git://github.com/libimobiledevice/libplist;protocol=https \ | 12 | SRC_URI = "git://github.com/libimobiledevice/libplist;protocol=https" |
13 | " | ||
14 | 13 | ||
15 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
16 | 15 | ||
@@ -20,10 +19,11 @@ do_install_append () { | |||
20 | fi | 19 | fi |
21 | } | 20 | } |
22 | 21 | ||
23 | PACKAGES =+ "${PN}-utils ${PN}++ ${PN}-python" | 22 | PACKAGES =+ "${PN}-utils \ |
24 | FILES_${PN} = "${libdir}/libplist${SOLIBS}" | 23 | ${PN}++ \ |
25 | FILES_${PN}++ = "${libdir}/libplist++${SOLIBS}" | 24 | ${PN}-python" |
25 | |||
26 | FILES_${PN} = "${libdir}/libplist-2.0${SOLIBS}" | ||
27 | FILES_${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}" | ||
26 | FILES_${PN}-utils = "${bindir}/*" | 28 | FILES_${PN}-utils = "${bindir}/*" |
27 | FILES_${PN}-python = "${libdir}/python*/site-packages/*" | 29 | FILES_${PN}-python = "${libdir}/python*/site-packages/*" |
28 | |||
29 | |||