makedeb


ripgrep-all-bin 0.10.6-2


ripgrep-all is a command-line tool that wraps ripgrep and lets you search through everything all at once.

Viewing /PKGBUILD.

View raw.

Click here to go back to the Git tree for ripgrep-all-bin.

# Maintainer: Jonathan Apodaca <jrapodaca@gmail.com>
pkgname=ripgrep-all-bin
pkgver=0.10.6
pkgrel=2
pkgdesc="ripgrep-all is a command-line tool that wraps ripgrep and lets you search through everything all at once."
arch=('amd64')
url="https://github.com/phiresky/ripgrep-all"
license=('MIT')
depends=('ripgrep')
provides=('ripgrep-all')
conflicts=('ripgrep-all')
extensions=('zipman')
source=(
  "https://github.com/phiresky/ripgrep-all/releases/download/v${pkgver}/ripgrep_all-v${pkgver}-x86_64-unknown-linux-musl.tar.gz"
)
sha256sums=('aa7b201078aab21d3c53de671ab448ac5a7c1b445fcf3474c27264ceae03b3ef')

package() {
  cd "${srcdir}/ripgrep_all-v${pkgver}-x86_64-unknown-linux-musl"
  install -Dm755 rga "${pkgdir}/usr/bin/rga"
  install -Dm755 rga-preproc "${pkgdir}/usr/bin/rga-preproc"
  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
  install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
}