2015-04-26 04:42:10 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/rubberband
|
2010-06-20 21:49:00 +08:00
|
|
|
|
|
|
|
pkgname=rubberband
|
2015-04-26 04:42:10 +08:00
|
|
|
pkgver=1.8.1
|
|
|
|
pkgrel=1
|
2010-06-20 21:49:00 +08:00
|
|
|
pkgdesc="Time-stretching and pitch-shifting audio library and utility"
|
2012-11-23 22:15:51 +08:00
|
|
|
arch=(x86_64)
|
2010-06-20 21:49:00 +08:00
|
|
|
url="http://www.breakfastquay.com/rubberband/"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('libsamplerate' 'fftw' 'vamp-plugin-sdk')
|
|
|
|
makedepends=('ladspa')
|
2015-04-26 04:42:10 +08:00
|
|
|
source=(http://code.breakfastquay.com/attachments/download/34/$pkgname-$pkgver.tar.bz2)
|
|
|
|
md5sums=('6c2b4e18a714bcc297d0db81a10f9348')
|
2010-06-20 21:49:00 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
2012-11-23 22:15:51 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
2015-04-26 04:42:10 +08:00
|
|
|
make DESTDIR="$pkgdir" install
|
2010-06-20 21:49:00 +08:00
|
|
|
}
|
2012-08-16 05:33:02 +08:00
|
|
|
|