blob: 67a5297b528749e9aa52607ee565b3e1a483e5c4 (
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:
5
6 name=sslh
7 version=1.13
8 release=1
9 source=(http://www.rutschle.net/tech/$name-${version}b.tar.gz sslh.rc)
10
11 build () {
12 install -D -m 0755 $name.rc $PKG/etc/rc.d/$name
13 cd $name-${version}
14 make
15 install -D -m 0644 $name.8.gz $PKG/usr/man/man8/$name.8.gz
16 install -D -m 0755 $name-select $PKG/usr/sbin/$name
17 }
|