mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 00:38:45 +01:00
Rather than take the first two components, drop the last one at the end. This makes it compatible with both old and new gnome version schemes. (From OE-Core rev: fa8950d0cf6174ce517275fe44df9e4c0788d5f0) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
945 B
Plaintext
32 lines
945 B
Plaintext
def gnome_verdir(v):
|
|
return ".".join(v.split(".")[:-1])
|
|
|
|
|
|
GNOME_COMPRESS_TYPE ?= "xz"
|
|
SECTION ?= "x11/gnome"
|
|
GNOMEBN ?= "${BPN}"
|
|
SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive"
|
|
|
|
FILES_${PN} += "${datadir}/application-registry \
|
|
${datadir}/mime-info \
|
|
${datadir}/mime/packages \
|
|
${datadir}/mime/application \
|
|
${datadir}/gnome-2.0 \
|
|
${datadir}/polkit* \
|
|
${datadir}/GConf \
|
|
${datadir}/glib-2.0/schemas \
|
|
${datadir}/appdata \
|
|
${datadir}/icons \
|
|
"
|
|
|
|
FILES_${PN}-doc += "${datadir}/devhelp"
|
|
|
|
GNOMEBASEBUILDCLASS ??= "autotools"
|
|
inherit ${GNOMEBASEBUILDCLASS} pkgconfig
|
|
|
|
do_install_append() {
|
|
rm -rf ${D}${localstatedir}/lib/scrollkeeper/*
|
|
rm -rf ${D}${localstatedir}/scrollkeeper/*
|
|
rm -f ${D}${datadir}/applications/*.cache
|
|
}
|