void-packages/srcpkgs/ripgrep/template

24 lines
595 B
Bash

# Template file for 'ripgrep'
pkgname=ripgrep
version=0.3.2
revision=1
hostmakedepends="cargo rust"
short_desc="Fast search tool inspired by ag and grep"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="Public Domain, MIT"
homepage="https://github.com/BurntSushi/ripgrep/"
distfiles="https://github.com/BurntSushi/${pkgname}/archive/${version}.tar.gz"
checksum=aea775c9ead5ee2b10b7cdebdb9387f5d6a400b96e5bfe26ccec7e44dd666617
nocross=yes
do_build() {
cargo build --release
}
do_install() {
vman doc/rg.1
vbin target/release/rg
vlicense LICENSE-MIT
vlicense UNLICENSE
}