1a7a3dc9cd
git-svn-id: svn://svn.openwrt.org/openwrt/packages@23263 3c298f89-4303-0410-b956-a3cf2f4a3e73
41 lines
894 B
Makefile
41 lines
894 B
Makefile
#
|
|
# 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:=2
|
|
PKG_RELEASE:=2
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/sshtunnel
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=SSH
|
|
TITLE:=Manages Local and Remote openssh ssh(1) tunnels
|
|
MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
|
|
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
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,sshtunnel))
|