author | Evgeniy Alekseev
<arcanis@archlinux.org> 2015-08-17 21:27:17 UTC |
committer | Evgeniy Alekseev
<arcanis@archlinux.org> 2015-08-17 21:27:17 UTC |
parent | 3bf12f4b4778a43a312e85771fc99b1f3bba60f2 |
ChangeLog | +3 | -0 |
PKGBUILD | +3 | -5 |
diff --git a/ChangeLog b/ChangeLog index a16956a..99db075 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,2 +1,5 @@ +1.5-1: +upstream update + 1.4-1: move from AUR into [community] diff --git a/PKGBUILD b/PKGBUILD index 2e6ceef..9b800b5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Kars Wang <jaklsy at gmail dot com> pkgname=jq -pkgver=1.4 +pkgver=1.5 pkgrel=1 pkgdesc='Command-line JSON processor' arch=('i686' 'x86_64') @@ -11,20 +11,18 @@ url='http://stedolan.github.io/jq/' license=('MIT') depends=('glibc') makedepends=('autoconf' 'automake' 'bison' 'flex' 'python2') -source=("http://stedolan.github.io/jq/download/source/${pkgname}-${pkgver}.tar.gz") +source=("https://github.com/stedolan/jq/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz") changelog=ChangeLog -md5sums=('e3c75a4f805bb5342c9f4b3603fb248f') +md5sums=('0933532b086bd8b6a41c1b162b1731f9') build() { cd "${pkgname}-${pkgver}" - ./configure --prefix=/usr make } package() { cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" prefix=/usr install install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" }