blob: 5c2974e1f37f00221409362a05ed2971ede47e53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
SUMMARY = "qtbase configuration files"
HOMEPAGE = "http://www.qt.io/"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PACKAGE_ARCH = "${MACHINE_ARCH}"
SRC_URI = "file://qt_env.sh \
file://eglfs_kms_cfg.json \
"
# Add custom Arago qtbase Environment script and eglfs_kms configuration file
do_install () {
install -d ${D}${sysconfdir}/profile.d
install -m 0644 ${WORKDIR}/qt_env.sh ${D}${sysconfdir}/profile.d/
install -d ${D}${sysconfdir}/qt5
install -m 0644 ${WORKDIR}/eglfs_kms_cfg.json ${D}${sysconfdir}/qt5/
}
FILES_${PN} += "${sysconfdir}/profile.d/* ${sysconfdir}/qt5/*"
|