Skip to content
Permalink
update-libxslt…
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
3 contributors

Users who have contributed to this file

@pmenzel @wwwutz @donald
executable file 28 lines (22 sloc) 823 Bytes
#!/bin/env beesh
# BEE_VERSION openssh-8.5_p1-0
SRCURL[0]="https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${PKGVERSION}${PKGEXTRAVERSION}.tar.gz"
SYSCONFDIR=/etc/ssh
mee_patch() {
# check-config fails anyway
sed -i -e '/^install:.*check-config/ s/check-config//' ${S}/Makefile.in
}
mee_configure() {
bee_configure \
--sysconfdir=${SYSCONFDIR} \
--with-md5-passwords \
--with-privsep-path=/var/lib/sshd \
--with-pam \
--with-xauth=/usr/bin/xauth
}
mee_install_post() {
mv -v ${D}${SYSCONFDIR}/ssh_config ${D}${SYSCONFDIR}/ssh_config.example
mv -v ${D}${SYSCONFDIR}/sshd_config ${D}${SYSCONFDIR}/sshd_config.example
install -v -m755 ${S}/contrib/ssh-copy-id ${D}${BINDIR}
install -v -m644 ${S}/contrib/ssh-copy-id.1 ${D}${MANDIR}/man1
}