mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Where there isn't a copyright statement, add one to make it explicit. Also drop editor config lines where they were present. (From OE-Core rev: 880c1ea3edc8edef974e65b2d424fc36809ea034) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
988 B
Plaintext
36 lines
988 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
|
|
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
|
|
}
|