mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:57:48 +08:00
26 lines
671 B
Bash
26 lines
671 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/rubberband
|
|
|
|
pkgname=rubberband
|
|
pkgver=1.8.1
|
|
pkgrel=1
|
|
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/34/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('6c2b4e18a714bcc297d0db81a10f9348')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|