diff options
| author | Potin Lai <potin.lai.pt@gmail.com> | 2022-08-26 01:32:21 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-08-27 07:37:45 -0700 |
| commit | d13b37bf8f265473d78290d507070f9369429fc2 (patch) | |
| tree | f0adfe56174b49b98c8b65830da3c143a37e8729 /meta-oe/recipes-extended/libimobiledevice | |
| parent | 0afcb4be77acdb7af3624278ebd5869f0e88bdfe (diff) | |
| download | meta-openembedded-d13b37bf8f265473d78290d507070f9369429fc2.tar.gz | |
libplist: add libplist_git.bb
Add libplist_git.bb to point to latest commit on github
Signed-off-by: Potin Lai <potin.lai.pt@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/libimobiledevice')
| -rw-r--r-- | meta-oe/recipes-extended/libimobiledevice/libplist_git.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb b/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb new file mode 100644 index 0000000000..82f3e4d0c9 --- /dev/null +++ b/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | SUMMARY = "A library to handle Apple Property List format whereas it's binary or XML" | ||
| 2 | HOMEPAGE = "https://github.com/libimobiledevice/libplist" | ||
| 3 | LICENSE = "GPL-2.0-only & LGPL-2.1-only" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \ | ||
| 5 | file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7" | ||
| 6 | |||
| 7 | DEPENDS = "libxml2 glib-2.0 swig python3" | ||
| 8 | |||
| 9 | inherit autotools pkgconfig python3native python3targetconfig | ||
| 10 | |||
| 11 | PV = "2.2.0+git${SRCPV}" | ||
| 12 | |||
| 13 | SRCREV = "db93bae96d64140230ad050061632531644c46ad" | ||
| 14 | SRC_URI = "git://github.com/libimobiledevice/libplist;protocol=https;branch=master" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/git" | ||
| 17 | |||
| 18 | CVE_CHECK_IGNORE += "\ | ||
| 19 | CVE-2017-5834 \ | ||
| 20 | CVE-2017-5835 \ | ||
| 21 | CVE-2017-5836 \ | ||
| 22 | " | ||
| 23 | |||
| 24 | do_install:append () { | ||
| 25 | if [ -e ${D}${libdir}/python*/site-packages/plist/_plist.so ]; then | ||
| 26 | chrpath -d ${D}${libdir}/python*/site-packages/plist/_plist.so | ||
| 27 | fi | ||
| 28 | } | ||
| 29 | |||
| 30 | PACKAGES =+ "${PN}-utils \ | ||
| 31 | ${PN}++ \ | ||
| 32 | ${PN}-python" | ||
| 33 | |||
| 34 | FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}" | ||
| 35 | FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}" | ||
| 36 | FILES:${PN}-utils = "${bindir}/*" | ||
| 37 | FILES:${PN}-python = "${libdir}/python*/site-packages/*" | ||
