change usbtunerhelper src_uri.
[vuplus_openembedded] / recipes / hostap / hostap-daemon-0.7.inc
1 HOMEPAGE = "http://hostap.epitest.fi"
2 SECTION = "kernel/userland"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 DEPENDS = "libnl openssl"
6
7 inherit update-rc.d
8 INITSCRIPT_NAME=hostapd
9
10 do_configure() {
11         install -m 0644 ${WORKDIR}/defconfig ${S}/.config
12 }
13
14 do_compile() {
15         make
16 }
17
18 do_install() {
19         install -d ${D}${sbindir} ${D}${sysconfdir}/init.d
20         install -m 0755 ${S}/hostapd ${D}${sbindir}
21         install -m 0755 ${S}/hostapd_cli ${D}${sbindir}
22         install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/hostapd
23 }
24