forked from bettercap/bettercap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openwrt.makefile
52 lines (41 loc) · 1.65 KB
/
openwrt.makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
include $(TOPDIR)/rules.mk
PKG_NAME:=bettercap
PKG_VERSION:=2.28
PKG_RELEASE:=2
GO_PKG:=github.com/bettercap/bettercap
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/bettercap/bettercap/tar.gz/v${PKG_VERSION}?
PKG_HASH:=5bde85117679c6ed8b5469a5271cdd5f7e541bd9187b8d0f26dee790c37e36e9
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_LICENSE:=GPL-3.0
PKG_LICENSE_FILES:=LICENSE.md
PKG_MAINTAINER:=Dylan Corrales <[email protected]>
PKG_BUILD_DEPENDS:=golang/host
PKG_BUILD_PARALLEL:=1
PKG_USE_MIPS16:=0
include $(INCLUDE_DIR)/package.mk
include ../../../packages/lang/golang/golang-package.mk
define Package/bettercap/Default
TITLE:=The Swiss Army knife for 802.11, BLE and Ethernet networks reconnaissance and MITM attacks.
URL:=https://www.bettercap.org/
DEPENDS:=$(GO_ARCH_DEPENDS) libpcap libusb-1.0
endef
define Package/bettercap
$(call Package/bettercap/Default)
SECTION:=net
CATEGORY:=Network
endef
define Package/bettercap/description
bettercap is a powerful, easily extensible and portable framework written
in Go which aims to offer to security researchers, red teamers and reverse
engineers an easy to use, all-in-one solution with all the features they
might possibly need for performing reconnaissance and attacking WiFi
networks, Bluetooth Low Energy devices, wireless HID devices and Ethernet networks.
endef
define Package/bettercap/install
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/bettercap $(1)/usr/bin/bettercap
endef
$(eval $(call GoBinPackage,bettercap))
$(eval $(call BuildPackage,bettercap))