29 lines
1.3 KiB
Plaintext
29 lines
1.3 KiB
Plaintext
do_install () {
|
|
oe_runmake "PREFIX=${D}${prefix}" \
|
|
"BINDIR=${D}${bindir}" \
|
|
"MANDIR=${D}${mandir}" \
|
|
install
|
|
|
|
install -d ${D}${systemd_unitdir}/system
|
|
|
|
if [ "${@bb.utils.contains('PACKAGECONFIG', 'resolvconf', 'resolvconf', '', d)}" != "" ]; then
|
|
install -m 0644 ${WORKDIR}/dnsmasq-resolvconf.service ${D}${systemd_unitdir}/system/dnsmasq.service
|
|
else
|
|
install -m 0644 ${WORKDIR}/dnsmasq-noresolvconf.service ${D}${systemd_unitdir}/system/dnsmasq.service
|
|
fi
|
|
|
|
install -m 0755 ${S}/contrib/lease-tools/dhcp_release ${D}${bindir}
|
|
|
|
if [ "${@bb.utils.contains('PACKAGECONFIG', 'dbus', 'dbus', '', d)}" != "" ]; then
|
|
install -d ${D}${sysconfdir}/dbus-1/system.d
|
|
install -m 644 dbus/dnsmasq.conf ${D}${sysconfdir}/dbus-1/system.d/
|
|
fi
|
|
if [ "${@bb.utils.contains('PACKAGECONFIG', 'resolvconf', 'resolvconf', '', d)}" != "" ]; then
|
|
install -d ${D}${sysconfdir}/resolvconf/update.d/
|
|
install -m 0755 ${WORKDIR}/dnsmasq.resolvconf ${D}${sysconfdir}/resolvconf/update.d/dnsmasq
|
|
|
|
install -d ${D}${sysconfdir}/default/volatiles
|
|
install -m 0644 ${WORKDIR}/99_dnsmasq ${D}${sysconfdir}/default/volatiles
|
|
install -m 0755 ${WORKDIR}/dnsmasq-resolvconf-helper ${D}${bindir}
|
|
fi
|
|
} |