18 lines
507 B
Plaintext
18 lines
507 B
Plaintext
# 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
|
|
version=1.15
|
|
release=1
|
|
source=(http://www.rutschle.net/tech/$name-${version}.tar.gz sslh.rc)
|
|
|
|
build () {
|
|
install -D -m 0755 $name.rc $PKG/etc/rc.d/$name
|
|
cd $name-${version}
|
|
make
|
|
install -D -m 0644 $name.8.gz $PKG/usr/man/man8/$name.8.gz
|
|
install -D -m 0755 $name-select $PKG/usr/sbin/$name
|
|
}
|