contrib/libsamplerate/Pkgfile

26 lines
662 B
Plaintext
Raw Normal View History

# Description: Sound sample rate conversion library.
2021-01-31 10:35:47 +01:00
# URL: https://libsndfile.github.io/libsamplerate/
2023-03-11 03:46:34 +01:00
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: libsndfile
# Optional: fftw
name=libsamplerate
version=0.2.2
release=1
2023-03-11 03:46:34 +01:00
source=(https://github.com/libsndfile/$name/releases/download/$version/$name-$version.tar.xz)
build() {
2023-03-11 03:46:34 +01:00
cmake -S $name-$version -B build -G Ninja \
-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-11 03:46:34 +01:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2011-10-28 17:17:12 +02:00
rm -r $PKG/usr/share
}