24 lines
626 B
Plaintext
Raw Normal View History

2016-05-17 23:05:00 +10:00
# Description: Audio fingerprinting library.
2019-09-20 23:00:56 +10:00
# URL: https://acoustid.org/chromaprint
2016-05-17 23:05:00 +10:00
# Maintainer: Danny Rawlins, crux at romster dot me
2020-06-01 18:25:02 +10:00
# Depends on: cmake ffmpeg ninja
2019-09-20 23:00:56 +10:00
# Optional: fftw
2016-05-17 23:05:00 +10:00
name=chromaprint
2020-06-01 18:25:02 +10:00
version=1.5.0
2016-05-17 23:05:00 +10:00
release=1
2019-09-20 23:00:56 +10:00
source=(https://github.com/acoustid/chromaprint/releases/download/v$version/$name-$version.tar.gz)
2016-05-17 23:05:00 +10:00
build() {
2020-11-08 10:12:05 +00:00
cmake -S $name-v$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=RELEASE \
2020-12-06 23:49:10 +00:00
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
2020-11-08 10:12:05 +00:00
-D BUILD_TESTS=OFF \
-Wno-dev
2016-05-17 23:05:00 +10:00
2020-06-01 18:25:02 +10:00
cmake --build build
2020-07-08 13:01:36 +00:00
DESTDIR=$PKG cmake --install build
2016-05-17 23:05:00 +10:00
}