1
0
forked from ports/contrib

rubberband: initial import

This commit is contained in:
Danny Rawlins 2018-07-22 21:13:17 +10:00
parent b4ca816cc3
commit 9347c3b323
3 changed files with 53 additions and 0 deletions

25
rubberband/.footprint Normal file
View File

@ -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

5
rubberband/.signature Normal file
View File

@ -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

23
rubberband/Pkgfile Normal file
View File

@ -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
}