c10d97484a
Note, that licensing stuff is a nightmare: many packages does not clearly state their licenses, and often multiple source files are simply copied together - each with different licensing information in the file headers. I tried hard to ensure, that the license information extracted into the OpenWRT's makefiles fit the "spirit" of the packages, e.g. such small packages which come without a dedicated source archive "inherites" the OpenWRT's own license in my opinion. However, I can not garantee that I always picked the correct information and/or did not miss license information. Signed-off-by: Michael Heimpold <mhei@heimpold.de> SVN-Revision: 43155
125 lines
3.3 KiB
Makefile
125 lines
3.3 KiB
Makefile
#
|
|
# Copyright (C) 2010-2014 Jo-Philipp Wich <jow@openwrt.org>
|
|
#
|
|
# This is free software, licensed under the GPL 2 license.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libiwinfo
|
|
PKG_VERSION:=2014-10-27.1
|
|
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=http://git.openwrt.org/project/iwinfo.git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=d5dc3d0605f76fbbbad005d998497e53a236aeda
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
PKG_CONFIG_DEPENDS := \
|
|
CONFIG_PACKAGE_kmod-brcm-wl \
|
|
CONFIG_PACKAGE_kmod-brcm-wl-mini \
|
|
CONFIG_PACKAGE_kmod-brcm-wl-mimo \
|
|
CONFIG_PACKAGE_kmod-madwifi \
|
|
CONFIG_PACKAGE_kmod-cfg80211
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
define Package/libiwinfo
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Generalized Wireless Information Library (iwinfo)
|
|
DEPENDS:=+PACKAGE_kmod-cfg80211:libnl-tiny +libuci
|
|
ABI_VERSION:=$(PKG_RELEASE)
|
|
endef
|
|
|
|
define Package/libiwinfo/description
|
|
Wireless information library with consistent interface for proprietary Broadcom,
|
|
madwifi, nl80211 and wext driver interfaces.
|
|
endef
|
|
|
|
|
|
define Package/libiwinfo-lua
|
|
SUBMENU:=Lua
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=libiwinfo Lua binding
|
|
DEPENDS:=+libiwinfo +liblua
|
|
endef
|
|
|
|
define Package/libiwinfo-lua/description
|
|
This is the Lua binding for the iwinfo library. It provides access to all enabled
|
|
backends.
|
|
endef
|
|
|
|
|
|
define Package/iwinfo
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Generalized Wireless Information utility
|
|
DEPENDS:=+libiwinfo
|
|
endef
|
|
|
|
define Package/iwinfo/description
|
|
Command line frontend for the wireless information library.
|
|
endef
|
|
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
IWINFO_BACKENDS := \
|
|
$(if $(CONFIG_PACKAGE_kmod-brcm-wl),wl) \
|
|
$(if $(CONFIG_PACKAGE_kmod-brcm-wl-mini),wl) \
|
|
$(if $(CONFIG_PACKAGE_kmod-brcm-wl-mimo),wl) \
|
|
$(if $(CONFIG_PACKAGE_kmod-madwifi),madwifi) \
|
|
$(if $(CONFIG_PACKAGE_kmod-cfg80211),nl80211)
|
|
|
|
TARGET_CFLAGS += \
|
|
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
|
-I$(STAGING_DIR)/usr/include \
|
|
-D_GNU_SOURCE
|
|
|
|
MAKE_FLAGS += \
|
|
FPIC="$(FPIC)" \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
BACKENDS="$(IWINFO_BACKENDS)"
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/iwinfo
|
|
$(CP) $(PKG_BUILD_DIR)/include/iwinfo.h $(1)/usr/include/
|
|
$(CP) $(PKG_BUILD_DIR)/include/iwinfo/* $(1)/usr/include/iwinfo/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/libiwinfo.so $(1)/usr/lib/libiwinfo.so
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iwinfo.so $(1)/usr/lib/lua/iwinfo.so
|
|
endef
|
|
|
|
define Package/libiwinfo/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/libiwinfo.so $(1)/usr/lib/libiwinfo.so
|
|
$(INSTALL_DIR) $(1)/usr/share/libiwinfo
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/hardware.txt $(1)/usr/share/libiwinfo/hardware.txt
|
|
endef
|
|
|
|
define Package/libiwinfo-lua/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iwinfo.so $(1)/usr/lib/lua/iwinfo.so
|
|
endef
|
|
|
|
define Package/iwinfo/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iwinfo $(1)/usr/bin/iwinfo
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libiwinfo))
|
|
$(eval $(call BuildPackage,libiwinfo-lua))
|
|
$(eval $(call BuildPackage,iwinfo))
|