mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
f318ab6bed
Fixes #5710.
17 lines
650 B
Bash
Executable file
17 lines
650 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=openssh
|
|
workdir=openssh-portable-9ca7e9c861775dd6c6312bc8aaab687403d24676
|
|
version=8.3-9ca7e9c
|
|
files="https://github.com/openssh/openssh-portable/archive/9ca7e9c861775dd6c6312bc8aaab687403d24676.tar.gz openssh-8.3-9ca7e9c.tar.gz"
|
|
depends="zlib openssl"
|
|
useconfigure=true
|
|
configopts="--prefix=/usr/local --disable-utmp --sysconfdir=/etc/ssh --with-ssl-dir=${SERENITY_BUILD_DIR}/Root/usr/local/lib"
|
|
|
|
pre_configure() {
|
|
run autoreconf
|
|
}
|
|
|
|
install() {
|
|
# Can't make keys outside of Serenity since ssh-keygen is built for Serenity.
|
|
run make DESTDIR="${SERENITY_BUILD_DIR}/Root" $installopts install-nokeys
|
|
}
|