core/rubberband/PKGBUILD
2012-11-23 14:15:51 +00:00

29 lines
762 B
Bash

# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# Contributors from Arch: Felipe Machado aka arch_audio <machado.felipe@gmail.com>
# Ray Rashif <schivmeister@gmail.com>
pkgname=rubberband
pkgver=1.7.0
pkgrel=2
pkgdesc="Time-stretching and pitch-shifting audio library and utility"
arch=(x86_64)
url="http://www.breakfastquay.com/rubberband/"
license=('GPL')
depends=('libsamplerate' 'fftw' 'vamp-plugin-sdk')
makedepends=('ladspa')
source=(http://code.breakfastquay.com/attachments/download/23/$pkgname-$pkgver.tar.bz2)
md5sums=('49093923c7a48e5860a5f7db3590ac74')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}