summaryrefslogtreecommitdiff
path: root/packages/zeroconf/zeroconf_0.6.1.bb
diff options
context:
space:
mode:
authorPhilipp Zabel <philipp.zabel@gmail.com>2005-08-28 16:51:31 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-28 16:51:31 +0000
commitc1707f971f4316d880921e41af988c1a32e1ac49 (patch)
treeb0373c4c0c1e935069c73391b25df8a0be14a093 /packages/zeroconf/zeroconf_0.6.1.bb
parent6e8697905a1285237df33c6ed6bc1e7a864a9270 (diff)
zeroconf: add a .bb for the zeroconf package, see bug #268
Diffstat (limited to 'packages/zeroconf/zeroconf_0.6.1.bb')
-rw-r--r--packages/zeroconf/zeroconf_0.6.1.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/zeroconf/zeroconf_0.6.1.bb b/packages/zeroconf/zeroconf_0.6.1.bb
new file mode 100644
index 0000000000..8dfa8ecb50
--- /dev/null
+++ b/packages/zeroconf/zeroconf_0.6.1.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "IPv4 link-local address allocator"
+HOMEPAGE = "http://www.progsoc.org/~wildfire/zeroconf/"
+LICENSE = "GPL"
+SECTION = "net"
+PRIORITY = "optional"
+
+PR = "r0"
+
+SRC_URI = "http://www.progsoc.org/~wildfire/zeroconf/download/${PN}-${PV}.tar.gz \
+ file://debian-zeroconf.patch;patch=1 \
+ file://busybox.patch;patch=1 \
+ file://zeroconf-default"
+
+do_install () {
+ install -d ${D}${sbindir}
+ install -d ${D}${sysconfdir}/network/if-up.d
+ install -d ${D}${sysconfdir}/default
+ install -c -m 755 ${S}/zeroconf ${D}${sbindir}/zeroconf
+ install -c -m 755 ${S}/zeroconf.sh ${D}${sysconfdir}/zeroconf
+ install -c -m 755 ${S}/debian-zeroconf ${D}${sysconfdir}/network/if-up.d/zeroconf
+ install -c ${WORKDIR}/zeroconf-default ${D}${sysconfdir}/default/zeroconf
+}