contrib/libsoxr/Pkgfile

30 lines
773 B
Plaintext
Raw Normal View History

2020-04-22 13:43:36 +02:00
# Description: High quality, one-dimensional sample-rate conversion library
# URL: https://sourceforge.net/p/soxr/wiki/Home/
2023-03-03 19:26:01 +01:00
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: ffmpeg
2020-04-22 13:43:36 +02:00
name=libsoxr
version=0.1.3
2023-03-03 19:26:01 +01:00
release=2
2020-04-22 13:43:36 +02:00
source=(https://downloads.sourceforge.net/soxr/soxr-$version-Source.tar.xz)
build() {
2023-03-03 19:26:01 +01:00
cmake -S soxr-$version-Source -B build -G Ninja \
2020-11-08 12:47:45 +01:00
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=Release \
2020-12-07 00:57:37 +01:00
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
2020-11-08 12:47:45 +01:00
-D BUILD_EXAMPLES=OFF \
-D BUILD_SHARED_LIBS=ON \
-D WITH_AVFFT=ON \
-D WITH_LSR_BINDINGS=ON \
-D WITH_OPENMP=ON \
-D WITH_PFFFT=ON \
-Wno-dev
2020-04-22 13:43:36 +02:00
2023-03-03 19:26:01 +01:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2020-04-22 13:43:36 +02:00
2023-03-03 19:26:01 +01:00
rm -r $PKG/usr/share
2020-04-22 13:43:36 +02:00
}