mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
bfbcc00cb9
Needs several packages to be updates Fixes build with openSSL 1.1.x License-Update: Drop LGPL-2.1, its moved out to separate package Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
922 B
BlitzBasic
30 lines
922 B
BlitzBasic
SUMMARY = "A library to handle Apple Property List format whereas it's binary or XML"
|
|
|
|
LICENSE = "GPLv2 & LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07 \
|
|
file://COPYING.LESSER;md5=6ab17b41640564434dda85c06b7124f7"
|
|
|
|
DEPENDS = "libxml2 glib-2.0 swig python"
|
|
|
|
inherit autotools pkgconfig pythonnative
|
|
|
|
SRCREV = "62ec804736435fa34e37e66e228e17e2aacee1d7"
|
|
SRC_URI = "git://github.com/libimobiledevice/libplist;protocol=https \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install_append () {
|
|
if [ -e ${D}${libdir}/python*/site-packages/plist/_plist.so ]; then
|
|
chrpath -d ${D}${libdir}/python*/site-packages/plist/_plist.so
|
|
fi
|
|
}
|
|
|
|
PACKAGES =+ "${PN}-utils ${PN}++ ${PN}-python"
|
|
FILES_${PN} = "${libdir}/libplist${SOLIBS}"
|
|
FILES_${PN}++ = "${libdir}/libplist++${SOLIBS}"
|
|
FILES_${PN}-utils = "${bindir}/*"
|
|
FILES_${PN}-python = "${libdir}/python*/site-packages/*"
|
|
|
|
|