36 lines
1 KiB
Bash
36 lines
1 KiB
Bash
# Template file for 'starship'
|
|
pkgname=starship
|
|
version=1.3.0
|
|
revision=1
|
|
build_style=cargo
|
|
build_helper=qemu
|
|
hostmakedepends="libgit2-devel pkg-config"
|
|
makedepends="libgit2-devel openssl-devel"
|
|
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"
|
|
distfiles="https://github.com/starship/starship/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=3f29cb6e5cb7c673cbc1f8e91ceb4a0d1317d235b147db15e461ffec22be13a5
|
|
|
|
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
|
|
}
|
|
|
|
do_check() {
|
|
mkdir -p fake-home
|
|
HOME="${wrksrc}/fake-home" cargo test --release --target ${RUST_TARGET}
|
|
}
|
|
|
|
post_install() {
|
|
vcompletion starship.bash bash
|
|
vcompletion starship.fish fish
|
|
vcompletion starship.zsh zsh
|
|
|
|
vlicense LICENSE
|
|
}
|