[packages] add sshtunnel, Manages Local and Remote openssh ssh(1) tunnels
[openwrt/svn-archive/archive.git] / net / sshtunnel / Makefile
1 #
2 # Copyright (C) 2010 segal.di.ubi.pt
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=sshtunnel
11 PKG_VERSION:=1
12 PKG_RELEASE:=1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/sshtunnel
17 SECTION:=net
18 CATEGORY:=Network
19 TITLE:=Manages Local and Remote openssh ssh(1) tunnels
20 MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com>
21 DEPENDS:=+openssh-client
22 endef
23
24 define Package/sshtunnel/description
25 Creates openssh ssh(1) Local and Remote tunnels configured in UCI file. Can be user to allow remote connections, possibly over NATed connections or without public IP/DNS
26 endef
27
28 define Package/sshtunnel/conffiles
29 /etc/config/sshtunnel
30 endef
31
32 define Build/Compile
33 endef
34
35 define Package/sshtunnel/install
36 $(CP) ./files/* $(1)
37 endef
38
39 $(eval $(call BuildPackage,sshtunnel))