26 lines
731 B
Bash
26 lines
731 B
Bash
# Template file for 'just'
|
|
pkgname=just
|
|
version=0.10.2
|
|
revision=1
|
|
build_style=cargo
|
|
short_desc="Just a command runner"
|
|
maintainer="Wilson Birney <wpb@360scada.com>"
|
|
license="CC0-1.0"
|
|
homepage="https://github.com/casey/just"
|
|
changelog="https://raw.githubusercontent.com/casey/just/master/CHANGELOG.md"
|
|
distfiles="https://github.com/casey/just/archive/refs/tags/${version}.tar.gz"
|
|
checksum=7be0c7f895191407c70affedc8640fcbc64b50cf72d4d301a1f2391e12478f14
|
|
make_check=ci-skip # test fails when run as root
|
|
|
|
# Fix failing test
|
|
pre_check() {
|
|
export USER=void
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vman man/just.1
|
|
vcompletion completions/just.bash bash
|
|
vcompletion completions/just.fish fish
|
|
vcompletion completions/just.zsh zsh
|
|
}
|