diff options
Diffstat (limited to 'community/chromaprint/PKGBUILD')
-rw-r--r-- | community/chromaprint/PKGBUILD | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/community/chromaprint/PKGBUILD b/community/chromaprint/PKGBUILD index 804f6dc65..6f7177ec3 100644 --- a/community/chromaprint/PKGBUILD +++ b/community/chromaprint/PKGBUILD @@ -1,24 +1,21 @@ -# $Id: PKGBUILD 73467 2012-07-08 09:29:39Z ibiru $ +# $Id: PKGBUILD 75942 2012-09-06 00:10:52Z bisson $ # Contributor: Wieland Hoffmann <the_mineo@web.de> # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=chromaprint -pkgver=0.6 -pkgrel=3 +pkgver=0.7 +pkgrel=1 pkgdesc='Library that implements a custom algorithm for extracting fingerprints from any audio source' url='http://acoustid.org/chromaprint/' arch=('i686' 'x86_64') license=('LGPL') depends=('ffmpeg') makedepends=('cmake') -source=("https://github.com/downloads/lalinsky/${pkgname}/${pkgname}-${pkgver}.tar.gz" - 'ffmpeg.patch') -sha1sums=('e8bcc1d0d8dfec86aa648b87ba3f69b6d589eae0' - '56057f824a29194fc6041bd73e0d07412fcc065b') +source=("https://github.com/downloads/lalinsky/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha1sums=('6a961585e82d26d357eb792216becc0864ddcdb2') build() { cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i ../ffmpeg.patch cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_EXAMPLES=ON . make } |