diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2018-07-22 21:13:17 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2018-07-22 21:13:17 +1000 |
commit | 9347c3b3239e962c9d5066aa7071f28c80e23e98 (patch) | |
tree | ce1584e7128112dbfaa83b268cb27e808c5f324e /rubberband | |
parent | b4ca816cc33a587c519126e45999f6b01b1918d5 (diff) | |
download | contrib-9347c3b3239e962c9d5066aa7071f28c80e23e98.tar.gz contrib-9347c3b3239e962c9d5066aa7071f28c80e23e98.tar.xz |
rubberband: initial import
Diffstat (limited to 'rubberband')
-rw-r--r-- | rubberband/.footprint | 25 | ||||
-rw-r--r-- | rubberband/.signature | 5 | ||||
-rw-r--r-- | rubberband/Pkgfile | 23 |
3 files changed, 53 insertions, 0 deletions
diff --git a/rubberband/.footprint b/rubberband/.footprint new file mode 100644 index 000000000..ea49625df --- /dev/null +++ b/rubberband/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/rubberband +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/rubberband/ +-rw-r--r-- root/root usr/include/rubberband/RubberBandStretcher.h +-rw-r--r-- root/root usr/include/rubberband/rubberband-c.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/ladspa/ +-rw-r--r-- root/root usr/lib/ladspa/ladspa-rubberband.cat +-rwxr-xr-x root/root usr/lib/ladspa/ladspa-rubberband.so +-rwxr-xr-x root/root usr/lib/librubberband-jni.so +-rw-r--r-- root/root usr/lib/librubberband.a +lrwxrwxrwx root/root usr/lib/librubberband.so -> librubberband.so.2.1.1 +lrwxrwxrwx root/root usr/lib/librubberband.so.2 -> librubberband.so.2.1.1 +-rwxr-xr-x root/root usr/lib/librubberband.so.2.1.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/rubberband.pc +drwxr-xr-x root/root usr/lib/vamp/ +-rw-r--r-- root/root usr/lib/vamp/vamp-rubberband.cat +-rwxr-xr-x root/root usr/lib/vamp/vamp-rubberband.so +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/ladspa/ +drwxr-xr-x root/root usr/share/ladspa/rdf/ +-rw-r--r-- root/root usr/share/ladspa/rdf/ladspa-rubberband.rdf diff --git a/rubberband/.signature b/rubberband/.signature new file mode 100644 index 000000000..2c1fdf215 --- /dev/null +++ b/rubberband/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF354fILn6tyrU81Bcc7mICA5K/eUICu2XlD8tipqAzkKu69UfoTs/CsTjBevM1BF8bkI2hNmC7VuhEUPknQo21QE= +SHA256 (Pkgfile) = b5765185ef7019335fc71ee62bf0c62910ff251f62db6d018002933787066ef0 +SHA256 (.footprint) = 02bdedb970280758205c806a903cfecf0db36da82d6740bf79521fd67c79e49a +SHA256 (rubberband-v1.8.2.tar.gz) = 0bb058710b476712480cf6b3e1c1178c6237e9e8e3c98092f00e31632a011d15 diff --git a/rubberband/Pkgfile b/rubberband/Pkgfile new file mode 100644 index 000000000..f0b5069f7 --- /dev/null +++ b/rubberband/Pkgfile @@ -0,0 +1,23 @@ +# Description: Time-stretching and pitch-shifting audio library and utility. +# URL: https://www.breakfastquay.com/rubberband/ +# Maintainer: Danny Rawlins, crux at romster dot me +# Depends on: fftw libsamplerate openjdk8 ladspa vamp-plugin-sdk + +name=rubberband +version=1.8.2 +release=1 +source=(https://github.com/breakfastquay/$name/archive/v$version/$name-v$version.tar.gz) + +build() { + cd $name-$version + + autoreconf -vfi + + ./configure --prefix=/usr + make + + export JAVA_HOME=/usr/lib/java/openjdk8 + make jni + + make DESTDIR=$PKG install +} |