blob: 6218e757cd4eec8fe99660a9cfcbc4f73d0318bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SRC_URI = ${DEBIAN_MIRROR}/main/n/${PN}/${PN}_${PV}.tar.gz
S = ${WORKDIR}/${P}
do_install () {
install -d ${D}/etc/init.d ${D}/${sbindir} ${D}/${mandir}/man8
install -m 0644 ${FILESDIR}/init ${D}/etc/init.d/netbase
install -m 0644 etc-rpc ${D}/etc/rpc
install -m 0644 etc-protocols ${D}/etc/protocols
install -m 0644 etc-services ${D}/etc/services
install -m 0755 update-inetd ${D}/${sbindir}/
install -m 0644 update-inetd.8 ${D}/${mandir}/man8/
}
|