add recipes-wlan, e2openplugins
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-wlan / hostap / hostap-daemon-0.7.inc
1 HOMEPAGE = "http://hostap.epitest.fi"
2 SECTION = "kernel/userland"
3 PRIORITY = "optional"
4 LICENSE = "GPLv2"
5 LIC_FILES_CHKSUM = "file://${WORKDIR}/hostapd-0.7.3/COPYING;md5=c54ce9345727175ff66d17b67ff51f58"
6 DEPENDS = "libnl openssl"
7
8 inherit update-rc.d
9 INITSCRIPT_NAME="hostapd"
10
11 do_configure() {
12         install -m 0644 ${WORKDIR}/defconfig ${S}/.config
13 }
14
15 do_compile() {
16         make
17 }
18
19 do_install() {
20         install -d ${D}${sbindir} ${D}${sysconfdir}/init.d
21         install -m 0755 ${S}/hostapd ${D}${sbindir}
22         install -m 0755 ${S}/hostapd_cli ${D}${sbindir}
23         install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hostapd
24 }
25