OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | # |
2 | # Copyright (C) 2015 OpenWrt.org |
||
3 | # |
||
4 | # This is free software, licensed under the GNU General Public License v2. |
||
5 | # See /LICENSE for more information. |
||
6 | # |
||
7 | |||
8 | include $(TOPDIR)/rules.mk |
||
9 | |||
10 | PKG_NAME:=wpan-tools |
||
11 | PKG_VERSION:=0.7 |
||
12 | |||
13 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz |
||
14 | PKG_SOURCE_URL:=http://wpan.cakelab.org/releases/ |
||
15 | PKG_HASH:=c16de9d7861c2d9b6a4436a0fac730f9f545ee290b92bc770c538ec6a3f22309 |
||
16 | |||
17 | include $(INCLUDE_DIR)/package.mk |
||
18 | |||
19 | define Package/wpan-tools |
||
20 | SECTION:=net |
||
21 | CATEGORY:=Network |
||
22 | TITLE:=cfg802154 interface configuration utility |
||
23 | URL:=http://wpan.cakelab.org/ |
||
24 | DEPENDS:= +libnl |
||
25 | endef |
||
26 | |||
27 | define Build/Configure |
||
28 | $(call Build/Configure/Default) |
||
29 | endef |
||
30 | |||
31 | define Package/wpan-tools/install |
||
32 | $(INSTALL_DIR) $(1)/usr/sbin |
||
33 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/iwpan $(1)/usr/sbin/ |
||
34 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/wpan-ping/wpan-ping $(1)/usr/sbin/ |
||
35 | endef |
||
36 | |||
37 | $(eval $(call BuildPackage,wpan-tools)) |