void-packages/srcpkgs/tinyssh/template
Christopher Brannon b96ba82161 tinyssh: update to 20210601.
And make cross compilation work!

Closes #31387
Closes #31362
2021-06-10 14:15:38 -03:00

34 lines
947 B
Bash

# Template file for 'tinyssh'
pkgname=tinyssh
version=20210601
revision=1
build_style=gnu-makefile
make_dirs="/etc/tinyssh 0755 root root"
depends="ucspi-tcp"
short_desc="Minimalistic SSH server"
maintainer="Christopher Brannon <chris@the-brannons.com>"
license="Public Domain"
homepage="https://tinyssh.org"
distfiles="https://github.com/janmojzis/tinyssh/archive/${version}.tar.gz"
checksum=2a051437878998c7782d9d38ef13e5e7a76435ae6b9c3e9ec492c3a567bd6314
if [ -n "${CROSS_BUILD}" ] ; then
make_build_target=cross-compile
fi
pre_build() {
echo '/usr/bin' > conf-bin
# Some of the tinyssh tests really shouldn't be run under xbps-src
# or on builders, so comment them all out.
# Build system needs a way to disable tests. Here's a dirty hack.
echo 'int main(void) { return 0; }' > cmbbogustest.c
for i in tinyssh-tests/*test.c crypto-tests/*test.c; do
cp cmbbogustest.c "$i"
done
}
post_install() {
vlicense LICENCE
vsv tinysshd
}