1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-02 19:33:16 +03:00
openwrt-packages/lowpan-tools/Makefile

52 lines
1.4 KiB
Makefile
Raw Normal View History

2011-07-06 11:36:05 +03:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
include $(TOPDIR)/rules.mk
PKG_NAME:=lowpan-tools
PKG_VERSION:=git
PKG_REV:=a1d9615adde6d1a568813c24a128273ed755af04
2011-07-06 11:36:05 +03:00
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV).tar.gz
PKG_SOURCE_URL:=git://linux-zigbee.git.sourceforge.net/gitroot/linux-zigbee/linux-zigbee
PKG_SOURCE_PROTO:=git
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=$(PKG_REV)
2011-07-06 11:36:05 +03:00
include $(INCLUDE_DIR)/package.mk
define Package/lowpan-tools
TITLE:=a set of utils to manage the Linux LoWPAN stack
SECTION:=network
CATEGORY:=Network
URL:=http://sourceforge.net/apps/trac/linux-zigbee/
2013-03-31 11:03:31 +03:00
DEPENDS:=+libnl-3
2011-07-06 11:36:05 +03:00
endef
define Package/lowpan-tools/description
This is a set of utils to manage the Linux LoWPAN stack.
The LoWPAN stack aims for IEEE 802.15.4-2003 (and for lesser extent
IEEE 802.15.4-2006) compatibility.
If you want to learn more, please go to http://linux-zigbee.sf.net/
endef
define Build/Prepare
$(call Build/Prepare/Default)
(cd $(PKG_BUILD_DIR) && ./autogen.sh --help)
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
2013-03-31 11:03:31 +03:00
$(CP) $(PKG_BUILD_DIR)/include/{ieee802154.h,nl802154.h} $(1)/usr/include
endef
2011-07-06 11:36:05 +03:00
define Package/lowpan-tools/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/{iz,izattach,izchat,izcoordinator} $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,lowpan-tools))