diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-09 03:04:59 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-27 20:00:18 +0000 |
commit | d8cd512fc2fdd54ba3597086086e172028a67f9d (patch) | |
tree | 06536db292a578426b93317df03cb405d7848ecd | |
parent | 04682003470f4020103cba0e973c6db6dcb6803d (diff) | |
download | aports-d8cd512fc2fdd54ba3597086086e172028a67f9d.tar.bz2 aports-d8cd512fc2fdd54ba3597086086e172028a67f9d.tar.xz |
main/the_silver_searcher: upgrade to 2.2.0
-rw-r--r-- | main/the_silver_searcher/APKBUILD | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/main/the_silver_searcher/APKBUILD b/main/the_silver_searcher/APKBUILD index 356c3d0197..ba7aeb3903 100644 --- a/main/the_silver_searcher/APKBUILD +++ b/main/the_silver_searcher/APKBUILD @@ -1,21 +1,20 @@ # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=the_silver_searcher -pkgver=2.1.0 -pkgrel=2 +pkgver=2.2.0 +pkgrel=0 pkgdesc="A code searching tool similar to ack, with a focus on speed." +options="!check" # No testsuite url="https://geoff.greer.fm/ag/" arch="all" license="Apache-2.0" -depends="" makedepends="pcre-dev xz-dev zlib-dev" subpackages="$pkgname-doc $pkgname-zsh-completion:zshcomp:noarch $pkgname-bash-completion:bashcomp:noarch" source="https://geoff.greer.fm/ag/releases/$pkgname-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" -build () { +build() { cd "$builddir" ./configure \ --build=$CBUILD \ @@ -27,11 +26,6 @@ build () { make } -check() { - cd "$builddir" - ./ag --help > /dev/null -} - package() { cd "$builddir" make DESTDIR="$pkgdir" install @@ -61,4 +55,4 @@ zshcomp() { rmdir -p "$pkgdir"/usr/share/zsh/site-functions/ 2>&1 || true } -sha512sums="27cf5c0990551261833aed0232438da6ec079d619a8dcd15fcf866a3997237435c2ba8dec88bb8b6abb8ef2f3498145903c3b0f39274b2660680c22fed65dd62 the_silver_searcher-2.1.0.tar.gz" +sha512sums="89d4e4f7f34c0d57aa880e7c3466f0373b961744a89ad30541e89e2d614322ab46c8044ec458406a117f74b0fea14cd3063fa4e0624a96526aa23eaccd6f1141 the_silver_searcher-2.2.0.tar.gz" |