2023-08-23 16:07:10 -05:00

31 lines
872 B
Bash

# Template file for 'vhs'
pkgname=vhs
version=0.6.0
revision=2
build_style=go
build_helper=qemu
go_import_path="github.com/charmbracelet/vhs"
go_ldflags="-X main.Version=v${version}"
depends="ffmpeg ttyd"
short_desc="Your CLI home video recorder"
maintainer="Marcin Puc <tranzystorek.io@protonmail.com>"
license="MIT"
homepage="https://github.com/charmbracelet/vhs"
changelog="https://github.com/charmbracelet/vhs/releases"
distfiles="https://github.com/charmbracelet/vhs/archive/refs/tags/v${version}.tar.gz"
checksum=bf41f264730f18b5146c2269d82b5b69757470799a2cce6099e420b5f3ec7fa3
post_install() {
vdoc "${FILESDIR}/README.voidlinux"
vlicense LICENSE
local vhs="${DESTDIR}/usr/bin/vhs"
for shell in bash fish zsh; do
vtargetrun ${vhs} completion ${shell} > vhs.${shell}
vcompletion vhs.${shell} ${shell}
done
vtargetrun ${vhs} manual > vhs.1
vman vhs.1
}