hcxtools: Changes to the Makefile, as suggested.
- Now using codeload as suggested. - Removed PKG_BUILD_PARALLEL, and PKG_USE_MIPS16:=0 as it was no longer needed to build the latest version successfully. - Moved PKG_MAINTAINER to top. - Use INSTALL_BIN instead of CP - Added PKG_LICENSE and PKG_LICENSE_FILES - Fixed a typo in TITLE - DCO should be fixed now. Signed-off-by: Andreas Nilsen <adde88@gmail.com>
This commit is contained in:
parent
9e4fc185e2
commit
6f6457fb37
2 changed files with 33 additions and 35 deletions
|
@ -1,5 +1,4 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2009-2014 OpenWrt.org
|
|
||||||
# Copyright (C) 2019 Andreas Nilsen <adde88@gmail.com>
|
# Copyright (C) 2019 Andreas Nilsen <adde88@gmail.com>
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
@ -12,13 +11,13 @@ PKG_NAME:=hcxdumptool
|
||||||
PKG_VERSION:=5.1.7
|
PKG_VERSION:=5.1.7
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/ZerBea/$(PKG_NAME)/archive/
|
PKG_SOURCE_URL:=https://codeload.github.com/zerbea/hcxdumptool/tar.gz/$(PKG_VERSION)?
|
||||||
PKG_HASH:=6ac996a506cb312a5f1c5987f30a4a80c793993908750f69f2df51056f961269
|
PKG_HASH:=6ac996a506cb312a5f1c5987f30a4a80c793993908750f69f2df51056f961269
|
||||||
|
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
|
||||||
|
PKG_LICENSE:=MIT
|
||||||
PKG_USE_MIPS16:=0
|
PKG_LICENSE_FILE:=license.txt
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -27,9 +26,8 @@ define Package/hcxdumptool
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
DEPENDS:=+libpcap
|
DEPENDS:=+libpcap
|
||||||
TITLE:=hcxdumptool
|
TITLE:=hcxdumptool
|
||||||
URL:=https://github.com/ZerBea/hcxdumptool.git
|
URL:=https://github.com/ZerBea/hcxdumptool
|
||||||
SUBMENU:=wireless
|
SUBMENU:=wireless
|
||||||
MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/hcxdumptool/description
|
define Package/hcxdumptool/description
|
||||||
|
@ -48,7 +46,7 @@ endef
|
||||||
|
|
||||||
define Package/hcxdumptool/install
|
define Package/hcxdumptool/install
|
||||||
$(INSTALL_DIR) $(1)/sbin
|
$(INSTALL_DIR) $(1)/sbin
|
||||||
$(CP) $(PKG_BUILD_DIR)/hcxdumptool $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxdumptool $(1)/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,hcxdumptool))
|
$(eval $(call BuildPackage,hcxdumptool))
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2009-2014 OpenWrt.org
|
# Copyright (C) 2019 Andreas Nilsen <adde88@gmail.com>
|
||||||
#
|
#
|
||||||
# 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.
|
||||||
|
@ -11,11 +11,13 @@ PKG_NAME:=hcxtools
|
||||||
PKG_VERSION:=5.1.6
|
PKG_VERSION:=5.1.6
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/ZerBea/$(PKG_NAME)/archive/
|
PKG_SOURCE_URL:=https://codeload.github.com/zerbea/hcxtools/tar.gz/$(PKG_VERSION)?
|
||||||
PKG_HASH:=19d2800c6f9339dd552ebc3e7195860f208a9856340b4db1aeaeb4a234557ca6
|
PKG_HASH:=19d2800c6f9339dd552ebc3e7195860f208a9856340b4db1aeaeb4a234557ca6
|
||||||
|
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
|
||||||
|
PKG_LICENSE:=MIT
|
||||||
|
PKG_LICENSE_FILE:=license.txt
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -23,10 +25,9 @@ define Package/hcxtools
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
DEPENDS:=+libpthread +libpcap +zlib +libcurl +libopenssl
|
DEPENDS:=+libpthread +libpcap +zlib +libcurl +libopenssl
|
||||||
TITLE:= hcxtools
|
TITLE:=hcxtools
|
||||||
URL:=https://github.com/ZerBea/hcxtools.git
|
URL:=https://github.com/ZerBea/hcxtools
|
||||||
SUBMENU:=wireless
|
SUBMENU:=wireless
|
||||||
MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/hcxtools/description
|
define Package/hcxtools/description
|
||||||
|
@ -43,25 +44,24 @@ endef
|
||||||
define Package/hcxtools/install
|
define Package/hcxtools/install
|
||||||
$(INSTALL_DIR) $(1)/sbin
|
$(INSTALL_DIR) $(1)/sbin
|
||||||
$(INSTALL_DIR) $(1)/etc
|
$(INSTALL_DIR) $(1)/etc
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanwkp2hcx $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanwkp2hcx $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanpmk2hcx $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanpmk2hcx $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanhcxmnc $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcxmnc $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanhcx2essid $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcx2essid $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanjohn2hcx $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanjohn2hcx $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/hcxpcaptool $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpcaptool $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanhcx2john $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcx2john $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/hcxpsktool $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpsktool $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlancow2hcxpmk $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancow2hcxpmk $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanhcxinfo $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcxinfo $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/hcxhash2cap $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhash2cap $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/hcxhashcattool $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhashcattool $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanhashhcx $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhashhcx $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlanhc2hcx $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhc2hcx $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/hcxwltool $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxwltool $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/whoismac $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/whoismac $(1)/sbin/
|
||||||
$(CP) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
|
||||||
# $(CP) $(PKG_BUILD_DIR)/usefulscripts/hcxgrep.py $(1)/sbin/hcxgrep
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,hcxtools))
|
$(eval $(call BuildPackage,hcxtools))
|
||||||
|
|
Loading…
Reference in a new issue