diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2020-04-22 22:53:34 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2020-04-22 22:53:34 +1000 |
commit | 7fb53aca956a345ef4f4be3c8a48142264421771 (patch) | |
tree | fcb32b6a8c9b57c86e0af16cf7f8a435110c6c37 /soundtouch | |
parent | 7cf39134a9089cb9ec4501bf7c538f5d88da3068 (diff) | |
download | contrib-7fb53aca956a345ef4f4be3c8a48142264421771.tar.gz contrib-7fb53aca956a345ef4f4be3c8a48142264421771.tar.xz |
soundtouch: initial import
Diffstat (limited to 'soundtouch')
-rw-r--r-- | soundtouch/.footprint | 21 | ||||
-rw-r--r-- | soundtouch/.signature | 5 | ||||
-rw-r--r-- | soundtouch/Pkgfile | 23 |
3 files changed, 49 insertions, 0 deletions
diff --git a/soundtouch/.footprint b/soundtouch/.footprint new file mode 100644 index 000000000..ca7a3f2b1 --- /dev/null +++ b/soundtouch/.footprint @@ -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 diff --git a/soundtouch/.signature b/soundtouch/.signature new file mode 100644 index 000000000..4d7875cda --- /dev/null +++ b/soundtouch/.signature @@ -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 diff --git a/soundtouch/Pkgfile b/soundtouch/Pkgfile new file mode 100644 index 000000000..b4a9b7d43 --- /dev/null +++ b/soundtouch/Pkgfile @@ -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 +} |