New package: mDNSResponder-561.1.1.
This commit is contained in:
parent
79e2568efb
commit
74465f39a3
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exec dnsextd -d
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
mkdir -p /var/run/mdnsd
|
||||
exec mdnsd -debug
|
|
@ -0,0 +1,36 @@
|
|||
# Template file for 'mDNSResponder'
|
||||
pkgname=mDNSResponder
|
||||
version=561.1.1
|
||||
revision=1
|
||||
hostmakedepends="flex"
|
||||
short_desc="Implements the Bonjour/Zeroconf protocol"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
license="Apache-2.0, 3-clause-BSD"
|
||||
homepage="http://opensource.apple.com/"
|
||||
distfiles="http://opensource.apple.com/tarballs/${pkgname}/${pkgname}-${version}.tar.gz"
|
||||
checksum=217ca717149b999a34c568913e4721beef96ac7ab93db8a012e68ffe816530d9
|
||||
|
||||
conf_files="/etc/nss_mdns.conf"
|
||||
conflicts="nss-mdns>=0"
|
||||
|
||||
do_build() {
|
||||
cd mDNSPosix
|
||||
make os=linux HAVE_IPV6=1 CC=$CC STRIP=echo
|
||||
}
|
||||
do_install() {
|
||||
cd mDNSPosix
|
||||
vconf nss_mdns.conf
|
||||
vsconf Services.txt
|
||||
vman nss_mdns.conf.5
|
||||
vman libnss_mdns.8
|
||||
for f in mdnsd dnsextd mDNSClientPosix mDNSIdentify mDNSNetMonitor \
|
||||
mDNSProxyResponderPosix mDNSResponderPosix; do
|
||||
vbin build/prod/$f
|
||||
done
|
||||
vinstall build/prod/libdns_sd.so 755 usr/lib
|
||||
vinstall build/prod/libnss_mdns-0.2.so 755 usr/lib
|
||||
ln -s libnss_mdns-0.2.so ${DESTDIR}/usr/lib/libnss_mdns.so.2
|
||||
# runit services
|
||||
vsv mdnsd
|
||||
vsv dnsextd
|
||||
}
|
Loading…
Reference in New Issue