Date: Monday, June 17, 2019 @ 22:42:21 Author: svenstaro Revision: 482041
upgpkg: ripgrep 11.0.1-2 Install fish completions to proper path and compile with --locked Modified: ripgrep/trunk/PKGBUILD ----------+ PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-06-17 22:25:26 UTC (rev 482040) +++ PKGBUILD 2019-06-17 22:42:21 UTC (rev 482041) @@ -1,8 +1,8 @@ -# Maintainer: Sven-Hendrik Haase <[email protected]> +# Maintainer: Sven-Hendrik Haase <[email protected]> # Contributor: Andrew Gallant <[email protected]> pkgname=ripgrep pkgver=11.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="A search tool that combines the usability of ag with the raw speed of grep" arch=('x86_64') url="https://github.com/BurntSushi/ripgrep" @@ -15,7 +15,7 @@ build() { cd "$pkgname-$pkgver" - cargo build --release --features 'pcre2' + cargo build --release --locked --features 'pcre2' } package() { @@ -25,7 +25,7 @@ install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg" install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash "$pkgdir/usr/share/bash-completion/completions/rg" - install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish "$pkgdir/usr/share/fish/completions/rg.fish" + install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish "$pkgdir/usr/share/fish/vendor_completions.d/rg.fish" install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 "$pkgdir/usr/share/man/man1/rg.1" install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
