blob: b64ecb1789c1e8f84c684abb83c07ce126e087d4 (
plain)
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
|
include $(TOPDIR)/rules.mk
PKG_NAME:=suricata-update
PKG_VERSION:=1.1.2
PKG_RELEASE:=1
PKG_LICENSE:=GPL-2.0
include $(INCLUDE_DIR)/package.mk
define Build/Prepare
true
endef
define Build/Configure
true
endef
define Build/Compile
true
endef
define Package/suricata-update
SUBMENU:=Firewall
SECTION:=net
CATEGORY:=Network
DEPENDS:=+python3-pip +python3-yaml
TITLE:=OISF Suricata IDS Update Utility
URL:=https://www.openinfosecfoundation.org/
endef
define Package/suricata-update/description
Suricata-Update provides updated ruleset lists for the Suricata IDS/IPS/NMS
endef
define Package/suricata-update/conffiles
/etc/config/suricata-update
endef
define Package/suricata-update/install
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/etc/init.d/suricata-update $(1)/etc/init.d/suricata-update
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/etc/config/suricata-update $(1)/etc/config/suricata-update
endef
$(eval $(call BuildPackage,suricata-update))
|