meta-freescale/recipes-graphics/mesa/mesa-etnaviv-env_0.1.bb
Weisser, Pascal fe465252dd mesa-etnaviv-env: Add HOMEPAGE variable
Add HOMEPAGE variable to mesa-etnaviv-env recipe.

Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com>
2026-01-23 08:31:49 +01:00

35 lines
969 B
BlitzBasic

SUMMARY = "Mesa environment variables for etnaviv on xserver"
HOMEPAGE = "https://github.com/Freescale/meta-freescale/"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
PACKAGE_ARCH = "${MACHINE_ARCH}"
SRC_URI = "\
file://mesa-etnaviv.conf \
file://mesa-etnaviv.sh \
"
S = "${UNPACKDIR}"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
do_install:use-mainline-bsp() {
# MESA global envirronment variables
# systemd
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
install -D -m 644 ${UNPACKDIR}/mesa-etnaviv.conf \
${D}${sysconfdir}/systemd/system.conf.d/mesa-etnaviv.conf
fi
# sysvinit
if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
install -D -m 644 ${UNPACKDIR}/mesa-etnaviv.sh \
${D}${sysconfdir}/profile.d/mesa-etnaviv.sh
fi
}
ALLOW_EMPTY:${PN} = "1"