27 lines
732 B
Bash
27 lines
732 B
Bash
# Template file for 'just'
|
|
pkgname=just
|
|
version=1.4.0
|
|
revision=1
|
|
build_style=cargo
|
|
short_desc="Just a command runner"
|
|
maintainer="cinerea0 <cinerea0@protonmail.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=43286928fe7ec58fee8466191ec47f87555e8c4afd91874146881ff02f6f456e
|
|
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
|
|
}
|