summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-10-13 21:01:49 -0400
committerAndrew Gallant <jamslam@gmail.com>2016-10-13 21:01:49 -0400
commit5a294177969c0c2dc6156d2c13cdb8e861ddbb98 (patch)
tree3acf24fdd4a1b0f2f2b7e64329775e130b7b5910 /pkg
parentf694800768c47f3d71362fcac0a16e4814ee1a25 (diff)
update archlinux PKGBUILD
Diffstat (limited to 'pkg')
-rw-r--r--pkg/archlinux/PKGBUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkg/archlinux/PKGBUILD b/pkg/archlinux/PKGBUILD
index c09eb669..3b843bc9 100644
--- a/pkg/archlinux/PKGBUILD
+++ b/pkg/archlinux/PKGBUILD
@@ -1,7 +1,7 @@
# Contributor: Andrew Gallant <jamslam@gmail.com>
# Maintainer: Andrew Gallant
pkgname=ripgrep
-pkgver=0.1.16
+pkgver=0.2.3
pkgrel=1
pkgdesc="A search tool that combines the usability of The Silver Searcher with the raw speed of grep."
arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@ url="https://github.com/BurntSushi/ripgrep"
license=('UNLICENSE')
makedepends=('cargo')
source=("https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz")
-sha256sums=('6f877018742c9a7557102ccebeedb40d7c779b470a5910a7bdab50ca2ce21532')
+sha256sums=('a88531558d2023df76190ea2e52bee50d739eabece8a57df29abbad0c6bdb917')
build() {
cd "$pkgname-$pkgver"
@@ -29,8 +29,9 @@ package() {
install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
install -Dm644 "doc/rg.1" "$pkgdir/usr/share/man/man1/rg.1"
- install -Dm644 "README-NEW.md" "$pkgdir/usr/share/doc/ripgrep/README.md"
+ install -Dm644 "README.md" "$pkgdir/usr/share/doc/ripgrep/README.md"
install -Dm644 "COPYING" "$pkgdir/usr/share/doc/ripgrep/COPYING"
install -Dm644 "LICENSE-MIT" "$pkgdir/usr/share/doc/ripgrep/LICENSE-MIT"
install -Dm644 "UNLICENSE" "$pkgdir/usr/share/doc/ripgrep/UNLICENSE"
+ install -Dm644 "CHANGELOG.md" "$pkgdir/usr/share/doc/ripgrep/CHANGELOG.md"
}