2010-01-29 22:38:12 +01:00
|
|
|
# Description: accept both HTTPS and SSH connections on the same port
|
|
|
|
# URL: http://www.rutschle.net/tech/sslh.shtml
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=sslh
|
2010-02-02 21:20:53 +01:00
|
|
|
version=1.7a
|
2010-01-29 22:38:12 +01:00
|
|
|
release=1
|
2010-02-02 21:20:53 +01:00
|
|
|
source=(http://www.rutschle.net/tech/$name-${version}.tar.gz sslh.rc)
|
2010-01-29 22:38:12 +01:00
|
|
|
|
|
|
|
build () {
|
|
|
|
install -D -m 0755 $name.rc $PKG/etc/rc.d/$name
|
2010-02-02 21:20:53 +01:00
|
|
|
cd $name-${version}
|
2010-01-29 22:38:12 +01:00
|
|
|
make
|
|
|
|
install -D -m 0644 $name.8.gz $PKG/usr/man/man8/$name.8.gz
|
|
|
|
install -D -m 0755 $name $PKG/usr/sbin/$name
|
|
|
|
}
|