core/openssh/Pkgfile

28 lines
866 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Secure SHell server and client tools
# URL: http://www.openssh.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: openssl, zlib
name=openssh
2009-02-27 15:55:02 +01:00
version=5.2p1
2008-03-31 10:11:10 +02:00
release=1
source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$name-$version.tar.gz sshd)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
./configure --prefix=/usr \
--libexecdir=/usr/lib/ssh \
--sysconfdir=/etc/ssh \
--with-mantype=man \
--mandir=/usr/man \
--with-tcp-wrappers \
--with-md5-passwords \
--with-privsep-user=nobody \
--with-privsep-path=/var/empty \
--with-xauth=/usr/bin/xauth
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
install -D -m 755 ../sshd $PKG/etc/rc.d/sshd
rm -rf $PKG/usr/share $PKG/var
}