Date: Saturday, November 3, 2012 @ 15:42:26 Author: heftig Revision: 170159
community2extra: Moving chromaprint from community to extra Added: chromaprint/ chromaprint/repos/ chromaprint/trunk/ chromaprint/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: chromaprint/trunk/PKGBUILD =================================================================== --- chromaprint/trunk/PKGBUILD (rev 0) +++ chromaprint/trunk/PKGBUILD 2012-11-03 19:42:26 UTC (rev 170159) @@ -0,0 +1,26 @@ +# $Id$ +# Contributor: Wieland Hoffmann <[email protected]> +# Maintainer: Gaetan Bisson <[email protected]> + +pkgname=chromaprint +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") +sha1sums=('6a961585e82d26d357eb792216becc0864ddcdb2') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_EXAMPLES=ON . + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Property changes on: chromaprint/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
