mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2026-01-27 11:52:04 +01:00
Add HOMEPAGE variable to mesa-etnaviv-env recipe. Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com>
35 lines
969 B
BlitzBasic
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"
|