mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
sshtunnel: move to github
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
#
|
||||
# Copyright (C) 2010-2014 OpenWrt.org
|
||||
# Copyright (C) 2010 segal.di.ubi.pt
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=sshtunnel
|
||||
PKG_VERSION:=3
|
||||
PKG_RELEASE:=3
|
||||
PKG_LICENSE:=GPL-2.0+
|
||||
|
||||
PKG_MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/sshtunnel
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
SUBMENU:=SSH
|
||||
TITLE:=Manages Local and Remote openssh ssh(1) tunnels
|
||||
DEPENDS:=+openssh-client
|
||||
endef
|
||||
|
||||
define Package/sshtunnel/description
|
||||
Creates openssh ssh(1) Local and Remote tunnels configured in UCI file. Can be used to allow remote connections, possibly over NATed connections or without public IP/DNS
|
||||
endef
|
||||
|
||||
define Package/sshtunnel/conffiles
|
||||
/etc/config/sshtunnel
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/sshtunnel/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/sshtunnel.init $(1)/etc/init.d/sshtunnel
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) ./files/sshtunnel.sh $(1)/usr/bin/
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_DATA) ./files/uci_sshtunnel $(1)/etc/config/sshtunnel
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,sshtunnel))
|
||||
Reference in New Issue
Block a user