2019-07-01 05:40:19 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--datadir=/usr/share/openssh \
|
|
|
|
--sysconfdir=/etc/ssh \
|
2020-02-10 14:35:37 -07:00
|
|
|
--sbindir=/usr/bin \
|
2020-05-08 02:59:03 -06:00
|
|
|
--libexecdir=/usr/lib/openssh \
|
2019-07-01 05:40:19 -06:00
|
|
|
--without-selinux \
|
|
|
|
--with-privsep-user=nobody \
|
|
|
|
--with-mantype=doc \
|
|
|
|
--without-rpath \
|
|
|
|
--disable-strip \
|
|
|
|
--with-ssl-engine \
|
|
|
|
--with-pid-dir=/run \
|
|
|
|
--disable-wtmp \
|
2022-10-05 17:57:00 -06:00
|
|
|
--disable-utmp \
|
|
|
|
--disable-security-key
|
2019-07-01 05:40:19 -06:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
|
|
|
|
2021-07-01 10:34:46 -06:00
|
|
|
cp -f contrib/ssh-copy-id "$1/usr/bin"
|
|
|
|
cp -f contrib/ssh-copy-id.1 "$1/usr/share/man/man1"
|
2021-08-04 21:31:17 -06:00
|
|
|
chmod +x "$1/usr/bin/ssh-copy-id"
|
2019-07-04 01:16:16 -06:00
|
|
|
|
|
|
|
# Install runit services.
|
2021-07-01 10:34:46 -06:00
|
|
|
mkdir -p "$1/etc/sv/sshd"
|
|
|
|
cp -f sshd.run "$1/etc/sv/sshd/run"
|
|
|
|
ln -sf /run/runit/supervise.sshd "$1/etc/sv/sshd/supervise"
|