mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
24 lines
701 B
Bash
24 lines
701 B
Bash
# $Id: PKGBUILD 16692 2010-05-05 17:46:06Z schiv $
|
|
# Maintainer: Ray Rashif <schivmeister@gmail.com>
|
|
# Contributor: Felipe Machado aka arch_audio <machado.felipe@gmail.com>
|
|
|
|
pkgname=rubberband
|
|
pkgver=1.5.0
|
|
pkgrel=1
|
|
pkgdesc="Time-stretching and pitch-shifting audio library and utility"
|
|
arch=(i686 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/1/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|
|
md5sums=('c5f288d644fcd46bd159e187bcc33f25')
|