mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
39 lines
1020 B
BlitzBasic
39 lines
1020 B
BlitzBasic
# Copyright (C) 2020 Armin Kuster <akuster808@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "Musl-nscd is an implementation of the NSCD protocol, suitable for use with musl and with standard NSS modules"
|
|
HOMEPAGE = "https://github.com/pikhq/musl-nscd"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=fff9baeb9a392879d7fb25ba3a2696e4"
|
|
SECTION = "utils"
|
|
|
|
DEPENDS += "flex-native bison-native flex bison"
|
|
|
|
PV = "1.1.0"
|
|
|
|
SRCREV = "cddd6be6c629ca96f2d2e74ee52daf12bbef1f83"
|
|
SRC_URI = "git://github.com/pikhq/musl-nscd;branch=master;protocol=https \
|
|
file://0001-nsswitch.y-Replace-empty-bison-extension.patch \
|
|
"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
|
|
do_configure () {
|
|
# no debug set -s flag
|
|
sed -i -e 's/LDFLAGS_AUTO=-s/LDFLAGS_AUTO=/' ${S}/configure
|
|
${S}/configure ${CONFIGUREOPTS} ${EXTRA_OECONF}
|
|
}
|
|
|
|
do_compile () {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
make DESTDIR=${D} install
|
|
}
|
|
|
|
COMPATIBLE_HOST = ".*-musl.*"
|