xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.15.1.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "Name Service Switch module for Multicast DNS (zeroconf) name resolution"
2HOMEPAGE = "https://github.com/lathiat/nss-mdns"
3DESCRIPTION = "nss-mdns is a plugin for the GNU Name Service Switch (NSS) functionality of the GNU C Library (glibc) providing host name resolution via Multicast DNS (aka Zeroconf, aka Apple Rendezvous, aka Apple Bonjour), effectively allowing name resolution by common Unix/Linux programs in the ad-hoc mDNS domain .local."
4SECTION = "libs"
5
6LICENSE = "LGPL-2.1-or-later"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1"
8
9DEPENDS = "avahi"
10
11SRC_URI = "git://github.com/lathiat/nss-mdns;branch=master;protocol=https \
12           "
13
14SRCREV = "4b3cfe818bf72d99a02b8ca8b8813cb2d6b40633"
15
16S = "${WORKDIR}/git"
17
18inherit autotools pkgconfig
19
20COMPATIBLE_HOST:libc-musl = 'null'
21
22EXTRA_OECONF = "--libdir=${base_libdir}"
23
24RDEPENDS:${PN} = "avahi-daemon"
25
26pkg_postinst:${PN} () {
27	sed '
28		/^hosts:/ !b
29		/\<mdns\(4\|6\)\?\(_minimal\)\?\>/ b
30		s/\([[:blank:]]\+\)dns\>/\1mdns4_minimal [NOTFOUND=return] dns/g
31		' -i $D${sysconfdir}/nsswitch.conf
32}
33
34pkg_prerm:${PN} () {
35	sed '
36		/^hosts:/ !b
37		s/[[:blank:]]\+mdns\(4\|6\)\?\(_minimal\( \[NOTFOUND=return\]\)\?\)\?//g
38		' -i $D${sysconfdir}/nsswitch.conf
39}
40