blob: 28debafb71f024af175aafa081d33fe4781929ec (
plain)
1 # Description: accept both HTTPS and SSH connections on the same port
2 # URL: http://www.rutschle.net/tech/sslh.shtml
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: libconfig
5
6 name=sslh
7 version=1.20
8 release=1
9 source=(http://www.rutschle.net/tech/$name/$name-v${version}.tar.gz sslh.rc)
10
11 build () {
12
13 install -D -m 0755 $name.rc $PKG/etc/rc.d/$name
14
15 cd $name-v${version}
16
17 make -j1
18
19 install -D -m 0644 $name.8.gz $PKG/usr/share/man8/$name.8.gz
20 install -D -m 0755 $name-select $PKG/usr/sbin/$name
21 }
|