hostapd: bump to 2024-09-06 (wip)
[openwrt/staging/xback.git] / package / network / config / firewall4 / Makefile
1 #
2 # Copyright (C) 2021 Jo-Philipp Wich <jo@mein.io>
3 #
4
5 include $(TOPDIR)/rules.mk
6
7 PKG_NAME:=firewall4
8 PKG_RELEASE:=1
9
10 PKG_SOURCE_PROTO:=git
11 PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall4.git
12 PKG_SOURCE_DATE:=2024-05-21
13 PKG_SOURCE_VERSION:=4c01d1ebf99e8ecfa69758a9b4f450ecef7b93cd
14 PKG_MIRROR_HASH:=bbc5622bc03e3b43116fcc86e3fa2d2372bfc07b3a00d2b3a6efac4f7454a403
15 PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
16 PKG_LICENSE:=ISC
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/firewall4
21 SECTION:=net
22 CATEGORY:=Base system
23 TITLE:=OpenWrt 4th gen firewall
24 DEPENDS:= \
25 +kmod-nft-core +kmod-nft-fib +kmod-nft-offload \
26 +kmod-nft-nat \
27 +nftables-json \
28 +ucode +ucode-mod-fs +ucode-mod-ubus +ucode-mod-uci
29 EXTRA_DEPENDS:=ucode (>=2022.03.22)
30 PROVIDES:=uci-firewall
31 endef
32
33 define Package/firewall4/description
34 This package provides an nftables-based implementation of the UCI firewall
35 sharing the same configuration format.
36 endef
37
38 define Package/firewall4/conffiles
39 /etc/config/firewall
40 /etc/nftables.d/
41 endef
42
43 define Package/firewall4/install
44 $(CP) -a $(PKG_BUILD_DIR)/root/* $(1)/
45 endef
46
47 define Build/Compile
48 endef
49
50 $(eval $(call BuildPackage,firewall4))