diff options
Diffstat (limited to 'packages/howl/howl_1.0.0.bb')
-rw-r--r-- | packages/howl/howl_1.0.0.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/howl/howl_1.0.0.bb b/packages/howl/howl_1.0.0.bb index e69de29bb2..9acc33018c 100644 --- a/packages/howl/howl_1.0.0.bb +++ b/packages/howl/howl_1.0.0.bb @@ -0,0 +1,28 @@ +SRC_URI = "http://www.porchdogsoft.com/download/howl-${PV}.tar.gz \ + file://posix.patch;patch=1;pnum=0 \ + file://configure.patch;patch=1;pnum=0 \ + file://mdnsresponder.init" +LICENSE = "howl" + +PR = "r2" + +INITSCRIPT_NAME = "mdnsresponder" +INITSCRIPT_PARAMS = "defaults" + +PACKAGES += "libhowl libmdnsresponder" + +FILES_${PN} = "${bindir} ${sbindir} ${sysconfdir}" +FILES_libhowl = "${libdir}/libhowl.so.*" +FILES_libmdnsresponder = "${libdir}/libmDNSResponder.so.*" +FILES_${PN}-doc += "${datadir}/howl/help" + +do_install_append() { + install -d ${D}${sysconfdir}/init.d + install -d ${D}${sbindir} + install -m 0755 ${WORKDIR}/mdnsresponder.init ${D}${sysconfdir}/init.d/mdnsresponder + # Debian puts it here, so let's do the same + mv ${D}${bindir}/mDNSResponder ${D}${sbindir} +} + +inherit autotools update-rc.d + |