32 lines
963 B
Bash
32 lines
963 B
Bash
# Template file for 'starship'
|
|
pkgname=starship
|
|
version=1.18.0
|
|
revision=1
|
|
build_style=cargo
|
|
build_helper=qemu
|
|
make_check_args="-- --skip modules::username::tests::show_always_false" # test fails in CI
|
|
hostmakedepends="cmake pkg-config"
|
|
depends="git"
|
|
checkdepends="git fish-shell"
|
|
short_desc="Minimal, fast and customizable cross-shell prompt"
|
|
maintainer="cinerea0 <cinerea0@protonmail.com>"
|
|
license="ISC"
|
|
homepage="https://starship.rs"
|
|
changelog="https://raw.githubusercontent.com/starship/starship/master/CHANGELOG.md"
|
|
distfiles="https://github.com/starship/starship/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=e387ead17edeccb603b15dc2bd9b61c6541e795e0f4a9d9015015743228c2368
|
|
make_check_pre="env HOME=${wrksrc}/fake-home"
|
|
|
|
pre_check() {
|
|
mkdir -p fake-home
|
|
}
|
|
|
|
post_install() {
|
|
for shell in bash fish zsh; do
|
|
vtargetrun ${DESTDIR}/usr/bin/starship completions ${shell} > starship.${shell}
|
|
vcompletion starship.${shell} ${shell}
|
|
done
|
|
|
|
vlicense LICENSE
|
|
}
|