contrib/chromaprint/Pkgfile

21 lines
525 B
Plaintext
Raw Normal View History

2016-05-17 15:05:00 +02:00
# Description: Audio fingerprinting library.
2019-09-20 15:00:56 +02:00
# URL: https://acoustid.org/chromaprint
2016-05-17 15:05:00 +02:00
# Maintainer: Danny Rawlins, crux at romster dot me
2020-06-01 10:25:02 +02:00
# Depends on: cmake ffmpeg ninja
2019-09-20 15:00:56 +02:00
# Optional: fftw
2016-05-17 15:05:00 +02:00
name=chromaprint
2020-06-01 10:25:02 +02:00
version=1.5.0
2016-05-17 15:05:00 +02:00
release=1
2019-09-20 15:00:56 +02:00
source=(https://github.com/acoustid/chromaprint/releases/download/v$version/$name-$version.tar.gz)
2016-05-17 15:05:00 +02:00
build() {
2020-06-01 10:25:02 +02:00
cmake -S$name-v$version -Bbuild -GNinja \
2016-05-17 15:05:00 +02:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RELEASE \
2019-09-20 15:00:56 +02:00
-DBUILD_TESTS=OFF
2016-05-17 15:05:00 +02:00
2020-06-01 10:25:02 +02:00
cmake --build build
2020-07-08 15:01:36 +02:00
DESTDIR=$PKG cmake --install build
2016-05-17 15:05:00 +02:00
}