27 lines
788 B
Bash
27 lines
788 B
Bash
# Template file for 'ripgrep'
|
|
pkgname=ripgrep
|
|
version=0.8.1
|
|
revision=1
|
|
hostmakedepends="asciidoc cargo rust"
|
|
short_desc="Fast search tool inspired by ag and grep"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="Public Domain, MIT"
|
|
homepage="https://github.com/BurntSushi/ripgrep/"
|
|
distfiles="https://github.com/BurntSushi/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=7035379fce0c1e32552e8ee528b92c3d01b8d3935ea31d26c51a73287be74bb3
|
|
nocross=yes
|
|
|
|
do_build() {
|
|
cargo build --release
|
|
}
|
|
do_install() {
|
|
vbin target/release/rg
|
|
vlicense LICENSE-MIT
|
|
vlicense UNLICENSE
|
|
|
|
vinstall complete/_rg 0644 usr/share/zsh/site-functions
|
|
cd target/release/build/*/out
|
|
vman rg.1
|
|
vinstall rg.bash 0644 usr/share/bash-completion/completions rg
|
|
vinstall rg.fish 0644 usr/share/fish/completions
|
|
}
|