0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-12 00:00:55 +00:00
packages/net/fsh/Makefile
Ray Wang fbcfd96e1b fsh: add new package
Fsh helps you access local shell and TCP services behind a NAT or firewall.

More details: https://github.com/heiher/hev-fsh

Signed-off-by: Ray Wang <r@hev.cc>
2025-01-06 20:00:17 -08:00

42 lines
1.1 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fsh
PKG_VERSION:=4.8.7
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://github.com/heiher/hev-fsh/releases/download/$(PKG_VERSION)
PKG_HASH:=4b89857915fd6c9a39c66203ac7098d4fa5ff1bef6c2f7467f4ea617a0933ea2
PKG_MAINTAINER:=Ray Wang <r@hev.cc>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=License
PKG_BUILD_FLAGS:=no-mips16
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/fsh
SECTION:=net
CATEGORY:=Network
TITLE:=Fsh helps you access local shell and TCP services behind a NAT or firewall
URL:=https://github.com/heiher/hev-fsh
endef
define Package/fsh/conffiles
/etc/config/fsh
endef
define Package/fsh/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/hev-fsh $(1)/usr/bin/fsh
$(INSTALL_DIR) $(1)/etc/config/
$(INSTALL_CONF) ./files/fsh.config $(1)/etc/config/fsh
$(INSTALL_DIR) $(1)/etc/init.d/
$(INSTALL_BIN) ./files/fshs.init $(1)/etc/init.d/fshs
$(INSTALL_BIN) ./files/fshc.init $(1)/etc/init.d/fshc
endef
$(eval $(call BuildPackage,fsh))