summaryrefslogtreecommitdiff
path: root/qt5-layer/recipes-qt/qt5/qtbase-conf_1.0.bb
blob: 63894c479aa1dfe6c84ed54d48015c24b98c0d21 (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/*"