diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /wireless-tools | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'wireless-tools')
-rw-r--r-- | wireless-tools/wireless-tools_26.oe | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/wireless-tools/wireless-tools_26.oe b/wireless-tools/wireless-tools_26.oe index e69de29bb2..1511cd1c13 100644 --- a/wireless-tools/wireless-tools_26.oe +++ b/wireless-tools/wireless-tools_26.oe @@ -0,0 +1,23 @@ +DESCRIPTION = "A driver for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = http://pcmcia-cs.sourceforge.net/ftp/contrib/wireless_tools.${PV}.tar.gz +S = "${WORKDIR}/wireless_tools.${PV}" + +inherit module + +do_compile() { + unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS + oe_runmake KERNEL_PATH=${KERNEL_PATH} KERNEL_SRC=${KERNEL_PATH} KERNEL_VERSION=${KERNEL_VERSION} BUILD_SHARED=y +} + +do_install() { + oe_runmake PREFIX=${D} install +} + +FILES_${PN}=${bindir} ${sbindir} ${libexecdir} ${libdir}/lib*.so.* \ + ${sysconfdir} ${sharedstatedir} ${localstatedir} \ + /bin /sbin /lib/*.so* ${datadir}/${PN} ${libdir}/${PN} |