void-packages/srcpkgs/miniserve/template

40 lines
1.2 KiB
Bash

# Template file for 'miniserve'
pkgname=miniserve
version=0.26.0
revision=1
build_style=cargo
build_helper=qemu
# these tests fail to create a tempdir
make_check_args="--
--skip qrcode_hidden_in_tty_when_disabled
--skip qrcode_shown_in_tty_when_enabled"
hostmakedepends="pkg-config"
makedepends="libzstd-devel"
checkdepends="curl"
short_desc="CLI tool to serve files and dirs over HTTP"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="MIT"
homepage="https://github.com/svenstaro/miniserve"
changelog="https://raw.githubusercontent.com/svenstaro/miniserve/master/CHANGELOG.md"
distfiles="https://github.com/svenstaro/miniserve/archive/refs/tags/v${version}.tar.gz"
checksum=5ac3e7220c0c86c23af46326cf88e4d0dc9eb296ca201c47c4c3f01d607edf63
make_check=ci-skip # port binding succeeds locally but fails in CI
case "$XBPS_TARGET_MACHINE" in
x86_64*|i686*|arm*|aarch64*) ;;
*) broken="ftbfs in ring" ;;
esac
post_install() {
local _miniserve="${DESTDIR}/usr/bin/miniserve"
for shell in bash fish zsh; do
vtargetrun ${_miniserve} --print-completions ${shell} > miniserve.${shell}
vcompletion miniserve.${shell} ${shell}
done
vtargetrun ${_miniserve} --print-manpage > miniserve.1
vman miniserve.1
vlicense LICENSE
}