void-packages/srcpkgs/ripgrep/template

24 lines
595 B
Bash
Raw Normal View History

2016-09-23 18:11:39 +00:00
# Template file for 'ripgrep'
pkgname=ripgrep
2016-11-01 09:54:12 +00:00
version=0.2.6
2016-09-23 18:11:39 +00:00
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"
2016-11-01 09:54:12 +00:00
checksum=6170e5866b49759401e912bd59ffe5a764ee501a6056396f7a3c9f131a75af65
2016-09-23 18:11:39 +00:00
nocross=yes
do_build() {
cargo build --release
2016-09-26 11:37:15 +00:00
}
2016-09-23 18:11:39 +00:00
do_install() {
vman doc/rg.1
vbin target/release/rg
vlicense LICENSE-MIT
vlicense UNLICENSE
}