mirror of
https://git.yoctoproject.org/poky
synced 2026-03-08 00:09:40 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
884 B
BlitzBasic
32 lines
884 B
BlitzBasic
# Copyright (C) 2016 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "BSD compatible headers"
|
|
LICENSE = "BSD-3-Clause & BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://sys-queue.h;beginline=1;endline=32;md5=c6352b0f03bb448600456547d334b56f"
|
|
SECTION = "devel"
|
|
|
|
SRC_URI = "file://sys-queue.h \
|
|
file://sys-tree.h \
|
|
file://sys-cdefs.h \
|
|
"
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -Dm 0644 ${S}/sys-queue.h ${D}${includedir}/sys/queue.h
|
|
install -Dm 0644 ${S}/sys-tree.h ${D}${includedir}/sys/tree.h
|
|
install -Dm 0644 ${S}/sys-cdefs.h ${D}${includedir}/sys/cdefs.h
|
|
}
|
|
#
|
|
# We will skip parsing for non-musl systems
|
|
#
|
|
|
|
COMPATIBLE_HOST = ".*-musl.*"
|
|
RDEPENDS:${PN}-dev = ""
|
|
RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|