summaryrefslogtreecommitdiff
path: root/community/the_silver_searcher
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-04-28 03:53:49 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-04-28 03:53:49 +0000
commit84fbb975eaab5e85082b96147a85031f1912646e (patch)
tree949477c713b1abae66611dace0e2b4d6a4f62f19 /community/the_silver_searcher
parent4534f7b3a3b58171148c3c50d6d067b3ae069b9e (diff)
Mon Apr 28 03:48:05 UTC 2014
Diffstat (limited to 'community/the_silver_searcher')
-rw-r--r--community/the_silver_searcher/PKGBUILD15
1 files changed, 8 insertions, 7 deletions
diff --git a/community/the_silver_searcher/PKGBUILD b/community/the_silver_searcher/PKGBUILD
index 731fe586f..b25f68b16 100644
--- a/community/the_silver_searcher/PKGBUILD
+++ b/community/the_silver_searcher/PKGBUILD
@@ -1,33 +1,34 @@
-# $Id: PKGBUILD 107984 2014-03-20 12:49:08Z arodseth $
+# $Id: PKGBUILD 110246 2014-04-27 19:31:42Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Jeff Horelick <jdhore1@gmail.com>
# Contributor: skydrome <skydrome@i2pmail.org>
pkgname=the_silver_searcher
-pkgver=0.21.0
+pkgver=0.21.1
pkgrel=1
pkgdesc='Code searching tool similar to Ack, but faster'
url='https://github.com/ggreer/the_silver_searcher'
license=('Apache')
depends=('pcre' 'zlib' 'xz')
+makedepends=('git')
arch=('x86_64' 'i686')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ggreer/$pkgname/archive/$pkgver.tar.gz")
-sha256sums=('ee921373e2bb1a25c913b0098ab946d137749b166d340a8ae6d88a554940a793')
+source=("git://github.com/ggreer/$pkgname.git#commit=ac1e7e4b0cdd37e64f9af7256b8a4568c5546ec2")
+md5sums=('SKIP')
prepare() {
- cd "$pkgname-$pkgver"
+ cd "$pkgname"
sed -i 's:configure:configure --prefix=/usr:' build.sh
}
build() {
- cd "$pkgname-$pkgver"
+ cd "$pkgname"
./build.sh
}
package() {
- make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+ make -C "$pkgname" DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: