void-packages/srcpkgs/starship/template
2020-10-09 13:40:43 +02:00

35 lines
969 B
Bash

# Template file for 'starship'
pkgname=starship
version=0.45.2
revision=1
build_style=cargo
build_helper=qemu
hostmakedepends="pkg-config"
makedepends="libgit2-devel"
checkdepends="git"
short_desc="Minimal, fast and customizable cross-shell prompt"
maintainer="Aluísio Augusto Silva Gonçalves <aluisio@aasg.name>"
license="ISC"
homepage="https://starship.rs"
distfiles="https://github.com/starship/starship/archive/v${version}.tar.gz"
checksum=99bbcd2eb0437627741feba5eb7c7b208334146ef2c5ffb5ceaafebf32bdde2a
post_build() {
STARSHIP="target/${RUST_TARGET}/release/starship"
vtargetrun ${STARSHIP} completions zsh >starship.zsh
vtargetrun ${STARSHIP} completions bash >starship.bash
vtargetrun ${STARSHIP} completions fish >starship.fish
}
pre_check() {
[ -L target/debug ] && unlink target/debug
ln -s release target/debug
}
post_install() {
vcompletion starship.bash bash
vcompletion starship.fish fish
vcompletion starship.zsh zsh
vlicense LICENSE
}