2008-07-06 18:23:29 +00:00
|
|
|
#
|
2009-01-28 09:24:02 +00:00
|
|
|
# Copyright (C) 2007-2009 OpenWrt.org
|
2007-11-30 11:30:37 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=iw
|
2009-01-28 09:24:02 +00:00
|
|
|
PKG_VERSION:=0.9.9
|
2007-11-30 11:30:37 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2008-09-21 14:51:44 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://wireless.kernel.org/download/iw/
|
2009-01-28 09:24:02 +00:00
|
|
|
PKG_MD5SUM:=fa79323a4dd181fdd3908990191d118d
|
2007-11-30 11:30:37 +00:00
|
|
|
PKG_BUILD_DEPENDS:=mac80211 libnl
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/iw
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=cfg80211 interface configuration utility
|
2008-09-21 14:51:44 +00:00
|
|
|
URL:=http://wireless.kernel.org/en/users/Documentation/iw
|
2007-11-30 11:30:37 +00:00
|
|
|
DEPENDS:=@!TARGET_avr32 @!TARGET_etrax +libnl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2009-01-28 09:24:02 +00:00
|
|
|
echo "#define IW_VERSION \"$(PKG_VERSION)\"" > $(PKG_BUILD_DIR)/version.h
|
2007-11-30 11:30:37 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
MAKE_FLAGS += \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/mac80211 -I$(STAGING_DIR)/usr/include/libnl -I$(STAGING_DIR)/usr/include" \
|
|
|
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -lnl"
|
|
|
|
|
2008-07-31 02:43:42 +00:00
|
|
|
ifneq ($(CONFIG_LINUX_2_6),)
|
2007-11-30 11:33:31 +00:00
|
|
|
define Package/iw/install
|
2007-11-30 11:30:37 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iw $(1)/usr/sbin/
|
2007-11-30 11:33:31 +00:00
|
|
|
endef
|
|
|
|
endif
|
2007-11-30 11:30:37 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,iw))
|