2007-10-24 16:30:03 +10:00
|
|
|
# Description: Sound sample rate conversion library.
|
2021-01-31 20:35:47 +11:00
|
|
|
# URL: https://libsndfile.github.io/libsamplerate/
|
2023-03-10 21:46:34 -05:00
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
|
|
# Depends on: libsndfile
|
|
|
|
# Optional: fftw
|
2007-10-24 16:30:03 +10:00
|
|
|
|
|
|
|
name=libsamplerate
|
2021-09-09 12:39:57 +02:00
|
|
|
version=0.2.2
|
2007-10-24 16:30:03 +10:00
|
|
|
release=1
|
2023-03-10 21:46:34 -05:00
|
|
|
source=(https://github.com/libsndfile/$name/releases/download/$version/$name-$version.tar.xz)
|
2007-10-24 16:30:03 +10:00
|
|
|
|
|
|
|
build() {
|
2023-03-10 21:46:34 -05:00
|
|
|
cmake -S $name-$version -B build -G Ninja \
|
2021-09-09 12:39:57 +02:00
|
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
|
|
-D BUILD_SHARED_LIBS=ON \
|
|
|
|
-Wno-dev
|
2023-03-10 21:46:34 -05:00
|
|
|
|
|
|
|
ninja -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG ninja -C build install
|
2011-10-29 02:17:12 +11:00
|
|
|
|
2021-09-09 12:39:57 +02:00
|
|
|
rm -r $PKG/usr/share
|
2007-10-24 16:30:03 +10:00
|
|
|
}
|