2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
11 PKG_NAME
:=wireless-tools
15 PKG_SOURCE
:=wireless_tools.
$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=http
://www.hpl.hp.com
/personal
/Jean_Tourrilhes
/Linux
17 PKG_MD5SUM
:=599c94497f9c9073c7b052d3dcb7cd16
19 TAR_OPTIONS
+= || true
21 PKG_BUILD_DIR
:=$(BUILD_DIR
)/wireless_tools
.28
22 PKG_INSTALL_DIR
:=$(PKG_BUILD_DIR
)/ipkg-install
24 include $(INCLUDE_DIR
)/package.mk
26 define Package
/wireless-tools
30 TITLE
:=Tools for manipulating Linux Wireless Extensions
32 This package contains a collection of tools for configuring wireless
\\\
33 adapters implementing the
"Linux Wireless Extensions".
34 URL
:=http
://hplabs.hp.com
/personal
/Jean_Tourrilhes
/Linux
/Tools.html
38 rm -rf
$(PKG_INSTALL_DIR
)
39 mkdir
-p
$(PKG_INSTALL_DIR
)
40 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
41 $(TARGET_CONFIGURE_OPTS
) \
42 CFLAGS
="$(TARGET_CFLAGS) -I." \
43 libiw.so
.28 iwmulticall
44 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
45 PREFIX
="$(PKG_INSTALL_DIR)" \
46 INSTALL_DIR
="$(PKG_INSTALL_DIR)/usr/sbin" \
47 INSTALL_LIB
="$(PKG_INSTALL_DIR)/usr/lib" \
51 define Build
/InstallDev
52 mkdir
-p
$(STAGING_DIR
)/usr
/include
53 $(CP
) $(PKG_BUILD_DIR
)/{iwlib
,wireless
}.h
$(STAGING_DIR
)/usr
/include/
54 mkdir
-p
$(STAGING_DIR
)/usr
/lib
55 $(CP
) $(PKG_BUILD_DIR
)/libiw.so
* $(STAGING_DIR
)/usr
/lib
/
56 ln
-sf libiw.so
.28 $(STAGING_DIR
)/usr
/lib
/libiw.so
59 define Build
/UninstallDev
60 rm -f
$(STAGING_DIR
)/usr
/include/{iwlib
,wireless
}.h \
61 $(STAGING_DIR
)/usr
/lib
/libiw.so
*
64 define Package
/wireless-tools
/install
65 install -d
-m0755
$(1)/usr
/lib
66 install -m0755
$(PKG_BUILD_DIR
)/libiw.so
.28 $(1)/usr
/lib
/
67 install -d
-m0755
$(1)/usr
/sbin
68 install -m0755
$(PKG_INSTALL_DIR
)/usr
/sbin
/iw
{config
,getid
,list
,priv
,spy
} $(1)/usr
/sbin
/
71 $(eval
$(call BuildPackage
,wireless-tools
))