aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/bsd-headers/bsd-headers.bb
blob: ae659abec4a819b11300253e290eda5e2d635ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (C) 2016 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)

DESCRIPTION = "bsd compatible headers"
LICENSE = "BSD-3-Clause && BSD-2-Clause"
SECTION = "devel"

SRC_URI = "file://sys-queue.h \
           file://sys-tree.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
}
#
# We will skip parsing for non-musl systems
#
COMPATIBLE_HOST = ".*-musl.*"