mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
Fixes: [YOCTO #13471] (From OE-Core rev: a9153b1993b7a441a0f396aff71c7930e9f59751) Signed-off-by: Ida Delphine <idadelm@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit e501e87b847d915e97b11d966b5781059daaf362) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.2 KiB
BlitzBasic
29 lines
1.2 KiB
BlitzBasic
SUMMARY = "libsecret is a library for storing and retrieving passwords and other secrets"
|
|
DESCRIPTION = "A GObject-based library for accessing the Secret Service API of \
|
|
the freedesktop.org project, a cross-desktop effort to access passwords, \
|
|
tokens and other types of secrets. libsecret provides a convenient wrapper \
|
|
for these methods so consumers do not have to call the low-level DBus methods."
|
|
LICENSE = "LGPLv2.1"
|
|
HOMEPAGE = "https://github.com/GNOME/libsecret"
|
|
BUGTRACKER = "https://gitlab.gnome.org/GNOME/libsecret/issues"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=23c2a5e0106b99d75238986559bb5fc6"
|
|
|
|
inherit gnomebase gtk-doc vala gobject-introspection manpages
|
|
|
|
DEPENDS += "glib-2.0 libgcrypt gettext-native"
|
|
|
|
PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native"
|
|
|
|
SRC_URI[archive.md5sum] = "d2dd660a8d502099317bc8af9f30302e"
|
|
SRC_URI[archive.sha256sum] = "57f73e94ec6263a17a077fb809cf8cf424637a897a7f15b4eec42ce4aef52447"
|
|
|
|
# http://errors.yoctoproject.org/Errors/Details/20228/
|
|
ARM_INSTRUCTION_SET_armv4 = "arm"
|
|
ARM_INSTRUCTION_SET_armv5 = "arm"
|
|
ARM_INSTRUCTION_SET_armv6 = "arm"
|
|
|
|
# vapigen.m4 bundled with the tarball does not yet have our cross-compilation fixes
|
|
do_configure_prepend() {
|
|
rm -f ${S}/build/m4/vapigen.m4
|
|
}
|