diff options
Diffstat (limited to 'hostap/hostap-daemon_0.2.4.oe')
-rw-r--r-- | hostap/hostap-daemon_0.2.4.oe | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hostap/hostap-daemon_0.2.4.oe b/hostap/hostap-daemon_0.2.4.oe index e69de29bb2..34cbe1e40e 100644 --- a/hostap/hostap-daemon_0.2.4.oe +++ b/hostap/hostap-daemon_0.2.4.oe @@ -0,0 +1,16 @@ +DESCRIPTION = "User space daemon for extended IEEE 802.11 management" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +RDEPENDS = "hostap-modules (${PV}) hostap-utils (${PV})" + +SRC_URI = "http://hostap.epitest.fi/releases/hostapd-${PV}.tar.gz" +S = "${WORKDIR}/hostapd-${PV}" + +do_install() { + install -d ${D}/${sysconfdir} ${D}/${bindir} + install -m 0644 hostapd.conf ${D}/${sysconfdir}/ + install -m 0755 hostapd ${D}/${bindir} +} + |