Date: Tuesday, February 6, 2018 @ 17:23:11 Author: arojas Revision: 289449
archrelease: copy trunk to community-x86_64 Added: rubberband/repos/community-x86_64/ rubberband/repos/community-x86_64/PKGBUILD (from rev 289448, rubberband/trunk/PKGBUILD) ----------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) Copied: rubberband/repos/community-x86_64/PKGBUILD (from rev 289448, rubberband/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2018-02-06 17:23:11 UTC (rev 289449) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Ray Rashif <sc...@archlinux.org> +# Contributor: Felipe Machado aka arch_audio <machado.fel...@gmail.com> + +pkgname=rubberband +pkgver=1.8.1 +pkgrel=3 +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 +}