Date: Monday, January 22, 2018 @ 01:20:00 Author: bisson Revision: 315240
upstream update Modified: chromaprint/trunk/PKGBUILD ----------+ PKGBUILD | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-01-22 00:56:48 UTC (rev 315239) +++ PKGBUILD 2018-01-22 01:20:00 UTC (rev 315240) @@ -3,7 +3,7 @@ # Maintainer: Gaetan Bisson <bis...@archlinux.org> pkgname=chromaprint -pkgver=1.4.2 +pkgver=1.4.3 pkgrel=1 pkgdesc='Library that implements a custom algorithm for extracting fingerprints from any audio source' url='https://acoustid.org/chromaprint' @@ -11,12 +11,14 @@ license=('LGPL') depends=('ffmpeg') makedepends=('cmake' 'git') -_commit=f2ce2e7ff05cf2b0b5e473fff55f31acf07c6a92 #tag=v1.4.2 -source=("git+https://github.com/acoustid/chromaprint.git#commit=$_commit") -sha256sums=('SKIP') +source=("https://github.com/acoustid/chromaprint/releases/download/v${pkgver}/chromaprint-${pkgver}.tar.gz") +sha256sums=('ea18608b76fb88e0203b7d3e1833fb125ce9bb61efe22c6e169a50c52c457f82') +#_commit=f2ce2e7ff05cf2b0b5e473fff55f31acf07c6a92 #tag=v1.4.2 +#source=("git+https://github.com/acoustid/chromaprint.git#commit=$_commit") + build() { - cd "${srcdir}/${pkgname}" + cd "${srcdir}/${pkgname}-v${pkgver}" cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ @@ -26,6 +28,6 @@ } package() { - cd "${srcdir}/${pkgname}" + cd "${srcdir}/${pkgname}-v${pkgver}" make DESTDIR="${pkgdir}" install }