summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ab34d6f4a6d2da4c9bd4b4f3af14fcf845d3da5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Maintainer: Daniel Bermond < yahoo-com: danielbermond >

# NOTE:
# If you want the fpcalc utility: add 'ffmpeg' to depends and change '-DBUILD_TOOLS' to 'ON'.
# FFT calculations will still be made using FFTW3. libchromaprint.so will still be free of
# ffmpeg libraries. But the fpcalc utility will be linked against ffmpeg libraries, so be
# warned that this can cause some sort of circular dependency with ffmpeg if your ffmpeg
# build has '--enable-chromaprint'.

_srcname="chromaprint"
pkgname=chromaprint-fftw
pkgver=1.4.1
pkgrel=1
pkgdesc="Extracts fingerprints from any audio source (uses fftw for FFT calculations instead of ffmpeg)"
arch=('i686' 'x86_64')
url="https://acoustid.org/chromaprint"
license=('GPL')
makedepends=('cmake')
depends=('fftw')
provides=('chromaprint' 'libchromaprint.so')
conflicts=('chromaprint' 'chromaprint-git')
source=("https://bitbucket.org/acoustid/chromaprint/downloads/${_srcname}-${pkgver}.tar.gz")
sha256sums=('d94e171e0b3d60a8fefe6846a3c0ed3a9a939cb44a7d7113331fdbc140de6d34')

build() {
	cd "$_srcname"-"$pkgver"
	
	cmake \
	    -DBIN_INSTALL_DIR:PATH=/usr/bin \
	    -DBUILD_SHARED_LIBS:BOOL=ON \
	    -DBUILD_TESTS:BOOL=OFF \
	    -DBUILD_TOOLS:BOOL=OFF \
	    -DCMAKE_BUILD_TYPE:STRING=Release \
	    -DCMAKE_COLOR_MAKEFILE:BOOL=ON \
	    -DCMAKE_INSTALL_PREFIX:PATH=/usr \
	    -DEXEC_INSTALL_PREFIX:PATH=/usr \
	    -DFFT_LIB:STRING=fftw3 \
	    -DINCLUDE_INSTALL_DIR:PATH=/usr/include \
	    -Wno-dev \
	    .
	make
}

package() {
	cd "$_srcname"-"$pkgver"
	make DESTDIR="$pkgdir/" install
}