soundtouch-32: new port at 2.3.2

This commit is contained in:
Luis
2023-11-17 11:20:00 +00:00
parent df8ed34ae1
commit b4bb25dd2a
3 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1 @@
058db201df6151e3cbd07dc8929885c4 soundtouch-2.3.2.tar.gz

View File

@@ -0,0 +1,11 @@
soundtouch-32-2.3.2-1
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
lrwxrwxrwx root/root usr/lib32/libSoundTouch.so -> libSoundTouch.so.1.0.0
lrwxrwxrwx root/root usr/lib32/libSoundTouch.so.1 -> libSoundTouch.so.1.0.0
-rwxr-xr-x root/root usr/lib32/libSoundTouch.so.1.0.0
lrwxrwxrwx root/root usr/lib32/libSoundTouchDll.so -> libSoundTouchDll.so.1.0.0
lrwxrwxrwx root/root usr/lib32/libSoundTouchDll.so.1 -> libSoundTouchDll.so.1.0.0
-rwxr-xr-x root/root usr/lib32/libSoundTouchDll.so.1.0.0
drwxr-xr-x root/root usr/lib32/pkgconfig/
-rw-r--r-- root/root usr/lib32/pkgconfig/soundtouch.pc

View File

@@ -0,0 +1,22 @@
# description : open-source audio processing library that allows changing the sound tempo, pitch and playback rate parameters independently from each other
name=soundtouch-32
version=2.3.2
release=1
source="https://www.surina.net/soundtouch/soundtouch-$version.tar.gz"
build() {
export CC="gcc -m32"
export CXX="g++ -m32"
export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
cd soundtouch
./bootstrap
./configure --prefix=/usr \
--libdir=/usr/lib32
make
make DESTDIR=$PWD/DESTDIR install
mkdir -p $PKG/usr/lib32
mv DESTDIR/usr/lib32/* $PKG/usr/lib32
}