contrib/chromaprint/Pkgfile
2019-09-20 23:00:56 +10:00

23 lines
484 B
Plaintext

# Description: Audio fingerprinting library.
# URL: https://acoustid.org/chromaprint
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: cmake ffmpeg
# Optional: fftw
name=chromaprint
version=1.4.3
release=1
source=(https://github.com/acoustid/chromaprint/releases/download/v$version/$name-$version.tar.gz)
build() {
cd $name-v$version
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RELEASE \
-DBUILD_TESTS=OFF
make
make DESTDIR=$PKG install
}