chromaprint: adopted, bumped release to trigger rebuild with newer ffmpeg

This commit is contained in:
John McQuah 2023-03-03 13:16:23 -05:00
parent e16fb3d7b7
commit 674a1a4286
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF314zW731X/RxQCj9nx/HAne6PLgrx/IU7u1vXWNTaCyRQcMlWT/fKDaFjdDcNWPgZHBibkDOKFX3RwU84fOvNg0=
SHA256 (Pkgfile) = ee2f6fd8b84c8f7b366698ef443578f4fee3815a772d32189ad3128ec9f1fae2
RWSagIOpLGJF37bZx6KMNJWwBW+XLgXobxozRufSfTMAWFdkYaq6NhYSx5SNNloCmjd86XmHKCUAUxdvsSdB78U2u44a8JF5mAY=
SHA256 (Pkgfile) = 4b86fc41f4c29d9999144cb42fa2ffecf2f6d522dd5339e6f670c67e912c5b2d
SHA256 (.footprint) = 3cd4c3d7a111616d2d0cd6add403303ddd7a883c45749ebe645acabad77663c5
SHA256 (chromaprint-1.5.1.tar.gz) = a1aad8fa3b8b18b78d3755b3767faff9abb67242e01b478ec9a64e190f335e1c

View File

@ -1,13 +1,13 @@
# Description: Audio fingerprinting library.
# URL: https://acoustid.org/chromaprint
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: cmake ffmpeg ninja
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: ffmpeg
# Optional: fftw
name=chromaprint
version=1.5.1
release=1
source=(https://github.com/acoustid/chromaprint/releases/download/v$version/$name-$version.tar.gz)
release=2
source=(https://github.com/acoustid/$name/releases/download/v$version/$name-$version.tar.gz)
build() {
cmake -S $name-$version -B build -G Ninja \
@ -18,6 +18,6 @@ build() {
-D BUILD_TESTS=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
}