void-packages/srcpkgs/bat/template
Érico Nogueira 1acb66a717 bat: udpate to 0.18.1.
Also don't pipe find into head unnecessarily.  `find|head -n1` requires
find to terminate with SIGPIPE when head is dead, but
`find ... -print -quit` will allow it to quit by itself. The -quit flag
is supported by GNU findutils and busybox find.
2021-05-14 22:11:41 -03:00

32 lines
1.1 KiB
Bash

# Template file for 'bat'
pkgname=bat
version=0.18.1
revision=1
build_style=cargo
hostmakedepends="cmake llvm clang"
makedepends="libcurl-devel libssh2-devel oniguruma-devel"
short_desc="Cat(1) clone with syntax highlighting and Git integration"
maintainer="John <me@johnnynator.dev>"
license="Apache-2.0, MIT"
homepage="https://github.com/sharkdp/bat"
distfiles="https://github.com/sharkdp/bat/archive/v${version}.tar.gz"
checksum=ab5246c3bec8745c14ca9a0473971f00fbce2fdc1ce7842e0a96676ee5eac2af
pre_build() {
export CFLAGS_${RUST_BUILD//-/_}="${CFLAGS_host}"
export CC_${RUST_BUILD//-/_}="${BUILD_CC}"
}
post_install() {
local manpage
vlicense LICENSE-MIT
vdoc README.md
# The manual page is hidden somewhere deep in the build tree
manpage=$(find ${wrksrc}/target -name bat.1 | head -n1)
vman ${manpage}
# Completions are also hidden somewhere deep in the build tree
fish_completion=$(find ${wrksrc}/target -name bat.fish -print -quit)
vcompletion ${fish_completion} fish
zsh_completion=$(find ${wrksrc}/target -name bat.zsh -print -quit)
vcompletion ${zsh_completion} zsh
}