mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:47:14 +08:00
29 lines
762 B
Bash
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
|
|
}
|
|
|