mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
62 lines
2.2 KiB
Bash
62 lines
2.2 KiB
Bash
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
|
|
# Modified by OpenPogo
|
|
|
|
pkgname=openssh
|
|
pkgver=5.2p1
|
|
pkgrel=2
|
|
pkgdesc='A Secure SHell server/client'
|
|
arch=(arm)
|
|
license=('custom')
|
|
groups=('base')
|
|
url="http://www.openssh.org/portable.html"
|
|
backup=('opt/etc/ssh/ssh_config' 'opt/etc/ssh/sshd_config' 'opt/etc/pam.d/sshd')
|
|
depends=('openssl>=0.9.8g' 'zlib' 'pam' 'tcp_wrappers' 'heimdal>=1.2-1')
|
|
source=(http://openpogo.com/pkgsrc/core/${pkgname}-${pkgver}.tar.gz
|
|
sshd
|
|
sshd.confd
|
|
sshd.pam)
|
|
md5sums=('15f0a6ab975ad475176636e58cf1182a'
|
|
'ac6a93668c9e2b190b3acf73abfa02b4'
|
|
'e2cea70ac13af7e63d40eb04415eacd5'
|
|
'1c7c2ea8734ec7e3ca58d820634dc73a')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/opt --libexecdir=/opt/lib/ssh \
|
|
--sysconfdir=/opt/etc/ssh --with-tcp-wrappers --with-privsep-user=nobody \
|
|
--with-md5-passwords --with-pam --with-mantype=man --mandir=/opt/man \
|
|
--with-xauth=/opt/bin/xauth --with-kerberos5=/opt --disable-strip
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
mkdir -p $startdir/pkg/opt/var/empty
|
|
|
|
install -D -m755 $startdir/src/sshd $startdir/pkg/opt/etc/rc.d/sshd
|
|
|
|
install -D -m644 LICENCE $startdir/pkg/opt/share/licenses/$pkgname/LICENCE
|
|
install -D -m644 $startdir/src/sshd.pam $startdir/pkg/opt/etc/pam.d/sshd
|
|
install -D -m644 $startdir/src/sshd.confd $startdir/pkg/opt/etc/conf.d/sshd
|
|
|
|
rm $startdir/pkg/opt/man/man1/slogin.1
|
|
ln -sf ssh.1.gz $startdir/pkg/opt/man/man1/slogin.1.gz
|
|
|
|
#additional contrib scripts that we like
|
|
install -D -m755 contrib/findssl.sh $startdir/pkg/opt/bin/findssl.sh
|
|
install -D -m755 contrib/ssh-copy-id $startdir/pkg/opt/bin/ssh-copy-id
|
|
install -D -m644 contrib/ssh-copy-id.1 $startdir/pkg/opt/man/man1/ssh-copy-id.1
|
|
|
|
# sshd_config
|
|
sed -i \
|
|
-e 's|^#ListenAddress 0.0.0.0|ListenAddress 0.0.0.0|g' \
|
|
-e 's|^#UsePAM no|UsePAM yes|g' \
|
|
-e 's|^#ChallengeResponseAuthentication yes|ChallengeResponseAuthentication no|g' \
|
|
$startdir/pkg/opt/etc/ssh/sshd_config
|
|
echo "HashKnownHosts yes" >> $startdir/pkg/opt/etc/ssh/ssh_config
|
|
echo "StrictHostKeyChecking ask" >> $startdir/pkg/opt/etc/ssh/ssh_config
|
|
|
|
#ssh_config
|
|
sed -i \
|
|
-e 's|^# Host \*|Host *|g' \
|
|
$startdir/pkg/opt/etc/ssh/ssh_config
|
|
}
|