contrib/chromaprint/Pkgfile

24 lines
625 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
2022-02-05 18:17:26 +01:00
version=1.5.1
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() {
2022-02-05 18:17:26 +01:00
cmake -S $name-$version -B build -G Ninja \
2020-11-08 11:12:05 +01:00
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=RELEASE \
2020-12-07 00:49:10 +01:00
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
2020-11-08 11:12:05 +01:00
-D BUILD_TESTS=OFF \
-Wno-dev
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
}