Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
29 lines
830 B
BlitzBasic
29 lines
830 B
BlitzBasic
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright Leica Geosystems AG
|
|
#
|
|
|
|
SUMMARY = "C++ library for kernel mode setting"
|
|
HOMEPAGE = "https://github.com/tomba/kmsxx"
|
|
LICENSE = "MPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=815ca599c9df247a0c7f619bab123dad"
|
|
|
|
BRANCH = "master"
|
|
SRC_URI = "git://github.com/tomba/kmsxx.git;protocol=https;branch=${BRANCH}"
|
|
SRCREV = "412935a47b762c33e54a464243f2d789b065bbb6"
|
|
PACKAGES =+ "${PN}-python"
|
|
|
|
PACKAGECONFIG ?= "utils python "
|
|
PACKAGECONFIG[omap] += "-Domap=enabled, -Domap=disabled"
|
|
PACKAGECONFIG[python] += "-Dpykms=enabled, -Dpykms=disabled, python3 python3-pybind11"
|
|
PACKAGECONFIG[utils] += "-Dutils=true, -Dutils=false"
|
|
|
|
DEPENDS += "libdrm libevdev fmt"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
FILES:${PN} ="${bindir} ${libdir}"
|
|
FILES:${PN}-python += "${PYTHON_SITEPACKAGES_DIR}/*"
|