mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
3eb7dd257b
WoA firmware, fonts and some other useful files are being distributed as a Microsoft cabinet files. Add recipes for the cabextract utility, which is used to extract such files. Cabextract can either use a bundled source tree for libmspack library or an externally provided library. Package the library separately in order to be able to share it with the meta-security layer. Cc: Armin Kuster <akuster808@gmail.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
653 B
BlitzBasic
23 lines
653 B
BlitzBasic
SUMMARY = "Software for extracting Microsoft cabinet files"
|
|
DESCRIPTION = "tool for extracting Microsoft cabinet files"
|
|
HOMEPAGE = "http://www.cabextract.org.uk/"
|
|
SECTION = "console/utils"
|
|
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://src/cabextract.c;beginline=4;endline=11;md5=b0a10c6d3843f262114e7ecf91fc7e78"
|
|
|
|
SRC_URI = "\
|
|
https://www.cabextract.org.uk/cabextract-${PV}.tar.gz \
|
|
file://fix-fnmatch.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "b5546db1155e4c718ff3d4b278573604f30dd64c3c5bfd4657cd089b823a3ac6"
|
|
|
|
DEPENDS = "libmspack"
|
|
|
|
EXTRA_OECONF = "--with-external-libmspack"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
BBCLASSEXTEND += "native nativesdk"
|