milis/talimatname/genel/s/soxr/talimat

32 lines
785 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio
# URL: http://sourceforge.net/p/soxr/wiki/Home/
# Paketçi: milisarge
# Gerekler: cmake
name=soxr
version=0.1.2
release=1
source=(http://downloads.sourceforge.net/project/soxr/soxr-$version-Source.tar.xz)
build() {
cd soxr-$version-Source
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_EXAMPLES=OFF \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DVISIBILITY_HIDDENL=ON \
-DWITH_AVFFT=ON \
-DWITH_DOUBLE_PRECISION=ON \
-DWITH_LSR_BINDINGS=ON \
-DWITH_OPENMP=ON \
-DWITH_PFFFT=ON \
-DWITH_SIMD=ON \
.
make
make DESTDIR="$PKG" install
install -Dm644 LICENCE "$PKG"/usr/share/licenses/$name/LICENSE
rm -r "$PKG"/usr/share/doc/
}