# ## Copyright (C) 2018-2020 CZ.NIC z.s.p.o. (https://www.nic.cz/) # ## This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # # # include $(TOPDIR)/rules.mk PKG_NAME:=sentinel-minipot PKG_VERSION:=2.0 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/sentinel/minipot.git PKG_SOURCE_VERSION:=cf5a115c6b064ad510c2a6fff255f96e36fa63e4 PKG_MAINTAINER:=CZ.NIC PKG_LICENSE:=GPL-3.0-or-later PKG_FIXUP:=autoreconf include $(INCLUDE_DIR)/package.mk define Package/sentinel-minipot SECTION:=net CATEGORY:=Network SUBMENU:=Sentinel TITLE:=Minipots URL:=https://gitlab.nic.cz/turris/sentinel/minipot DEPENDS:=\ +czmq \ +libevent2 \ +msgpack-c \ +sentinel-firewall \ +sentinel-proxy endef define Package/sentinel-minipot/description Sentinel minipots. These are minimal honeypots. Implements protocols: FTP, HTTP, SMTP submission and Telnet endef define Package/sentinel-minipot/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/sentinel-minipot $(1)/usr/bin/sentinel-minipot $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/init $(1)/etc/init.d/sentinel-minipot $(INSTALL_DIR) $(1)/etc/uci-defaults $(INSTALL_BIN) ./files/uci-defaults $(1)/etc/uci-defaults/99-sentinel-minipot-telnet $(INSTALL_DIR) $(1)/usr/libexec/sentinel/firewall.d $(INSTALL_BIN) ./files/sentinel-firewall.sh $(1)/usr/libexec/sentinel/firewall.d/70-minipot.sh $(INSTALL_DATA) ./files/defaults.sh $(1)/usr/libexec/sentinel/minipot-defaults.sh $(INSTALL_DIR) $(1)/usr/libexec/sentinel/reload_hooks.d $(INSTALL_BIN) ./files/restart-minipot-hook.sh $(1)/usr/libexec/sentinel/reload_hooks.d/60_minipot.sh endef $(eval $(call BuildPackage,sentinel-minipot))