vp-build/srcpkgs/skim/template

26 lines
523 B
Bash

# Template file for 'skim'
pkgname=skim
version=0.5.0
revision=1
hostmakedepends="cargo rust"
short_desc="Fuzzy Finder in rust"
maintainer="Orphan <orphan@voidlinux.eu>"
license="MIT"
homepage="https://github.com/lotabout/skim"
distfiles="https://github.com/lotabout/skim/archive/v${version}.tar.gz"
checksum=bc45edfd77323b010e19247ff74cb9eaf7a5b3457a765ba50ddcd0f5b9744eba
nocross=yes
do_build() {
cargo build --release
}
do_check() {
cargo test --release
}
do_install() {
vbin target/release/sk
vlicense LICENSE
}