soundtouch: initial import

This commit is contained in:
Danny Rawlins 2020-04-22 22:53:34 +10:00
parent 7cf39134a9
commit 7fb53aca95
3 changed files with 49 additions and 0 deletions

21
soundtouch/.footprint Normal file
View File

@ -0,0 +1,21 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/soundstretch
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/soundtouch/
-rw-r--r-- root/root usr/include/soundtouch/BPMDetect.h
-rw-r--r-- root/root usr/include/soundtouch/FIFOSampleBuffer.h
-rw-r--r-- root/root usr/include/soundtouch/FIFOSamplePipe.h
-rw-r--r-- root/root usr/include/soundtouch/STTypes.h
-rw-r--r-- root/root usr/include/soundtouch/SoundTouch.h
-rw-r--r-- root/root usr/include/soundtouch/soundtouch_config.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libSoundTouch.la
lrwxrwxrwx root/root usr/lib/libSoundTouch.so -> libSoundTouch.so.1.0.0
lrwxrwxrwx root/root usr/lib/libSoundTouch.so.1 -> libSoundTouch.so.1.0.0
-rwxr-xr-x root/root usr/lib/libSoundTouch.so.1.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/soundtouch.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/soundtouch.m4

5
soundtouch/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3w4W7k2HqrQTccgkEogrnE0KHqmTLL1fUlMf1AX3pkIrdTjQ0JNXGtWat4jJKDJvl6LMqaOajRPkpWiatP7MogY=
SHA256 (Pkgfile) = 59498fd0dc214857c9983f4f77f9e7cecf88597a5a5fa18a6b83da3cfe73f7ce
SHA256 (.footprint) = a1e366cbc3b971d5021f079404738ad129a603819ba9d5811ea2f86ed662a97b
SHA256 (soundtouch-2.1.2.tar.bz2) = 992bba58ecda8c0a3a94cc9648ccebbb84fb6f4f8c1a90fbb4ec3817354ad40d

23
soundtouch/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: Audio processing library for changing tempo, pitch and playback rates.
# URL: https://www.surina.net/soundtouch/
# Maintainer: Danny Rawlins, crux at romster dot me
name=soundtouch
version=2.1.2
release=1
source=(https://gitlab.com/$name/$name/-/archive/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
./bootstrap
./configure \
--prefix=/usr \
--enable-shared=yes
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}