mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-20 10:14:43 +02:00
package shared library as well (partially closes: #3030)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10829 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3f3f04ffd2
commit
ecfbe962cc
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006-2008 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
@ -22,11 +22,15 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/wireless_tools.$(PKG_VERSION)
|
|||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/wireless-tools/Default
|
||||||
|
URL:=http://hplabs.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/wireless-tools
|
define Package/wireless-tools
|
||||||
|
$(call Package/wireless-tools/Default)
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Base system
|
CATEGORY:=Base system
|
||||||
TITLE:=Tools for manipulating Linux Wireless Extensions
|
TITLE:=Tools for manipulating Linux Wireless Extensions
|
||||||
URL:=http://hplabs.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/wireless-tools/description
|
define Package/wireless-tools/description
|
||||||
@ -34,6 +38,18 @@ define Package/wireless-tools/description
|
|||||||
adapters implementing the "Linux Wireless Extensions".
|
adapters implementing the "Linux Wireless Extensions".
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libiw
|
||||||
|
$(call Package/wireless-tools/Default)
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
TITLE:=Library for manipulating Linux Wireless Extensions
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/libiw/description
|
||||||
|
This package contains a library for manipulating
|
||||||
|
"Linux Wireless Extensions".
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
rm -rf $(PKG_INSTALL_DIR)
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
mkdir -p $(PKG_INSTALL_DIR)
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
@ -65,4 +81,10 @@ define Package/wireless-tools/install
|
|||||||
ln -sf iwconfig $(1)/usr/sbin/iwspy
|
ln -sf iwconfig $(1)/usr/sbin/iwspy
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libiw/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_BUILD_DIR)/libiw.so.* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,wireless-tools))
|
$(eval $(call BuildPackage,wireless-tools))
|
||||||
|
$(eval $(call BuildPackage,libiw))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user