mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
b6740733bc
Get fix https://github.com/pikhq/musl-nscd/commit/ce81a80e30c2041d8260115fac86831ff64c354a Signed-off-by: Khem Raj <raj.khem@gmail.com>
38 lines
899 B
BlitzBasic
38 lines
899 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=9bf479a145bcaff8489e743da58afeee"
|
|
SECTION = "utils"
|
|
|
|
PV = "1.0.2"
|
|
|
|
CFLAGS += "-fcommon"
|
|
|
|
SRCREV = "af581482a3e1059458f3c8b20a56f82807ca3bd4"
|
|
SRC_URI = "git://github.com/pikhq/musl-nscd"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
inherit autotools-brokensep
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
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.*"
|