2021-01-22 19:44:05 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2020-05-11 00:03:39 +03:00
|
|
|
port=dropbear
|
2022-04-28 04:50:11 +03:00
|
|
|
version=2022.82
|
|
|
|
files="https://mirror.dropbear.nl/mirror/releases/dropbear-${version}.tar.bz2 dropbear-${version}.tar.bz2 3a038d2bbc02bf28bbdd20c012091f741a3ec5cbe460691811d714876aad75d1"
|
|
|
|
auth_type="sha256"
|
2020-05-11 00:03:39 +03:00
|
|
|
useconfigure=true
|
2022-01-08 16:32:29 +03:00
|
|
|
use_fresh_config_sub=true
|
2020-05-11 00:03:39 +03:00
|
|
|
# don't care about zlib, less deps is better
|
2021-09-27 01:16:18 +03:00
|
|
|
configopts=("--disable-zlib")
|
2020-05-11 00:03:39 +03:00
|
|
|
# Serenity's utmp is not fully compatible with what dropbear expects.
|
2021-09-27 01:16:18 +03:00
|
|
|
configopts+=("--disable-utmp" "--disable-wtmp" "--disable-login" "--disable-lastlog")
|