summaryrefslogtreecommitdiff
path: root/community/chromaprint/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/chromaprint/PKGBUILD')
-rw-r--r--community/chromaprint/PKGBUILD26
1 files changed, 0 insertions, 26 deletions
diff --git a/community/chromaprint/PKGBUILD b/community/chromaprint/PKGBUILD
deleted file mode 100644
index 6f7177ec3..000000000
--- a/community/chromaprint/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# $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.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
-}