Date: Friday, November 19, 2010 @ 08:36:39 Author: heftig Revision: 99914
Add alsa-plugins Added: alsa-plugins/ alsa-plugins/repos/ alsa-plugins/trunk/ alsa-plugins/trunk/PKGBUILD ----------+ PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) Added: alsa-plugins/trunk/PKGBUILD =================================================================== --- alsa-plugins/trunk/PKGBUILD (rev 0) +++ alsa-plugins/trunk/PKGBUILD 2010-11-19 13:36:39 UTC (rev 99914) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Sergej Pupykin <[email protected]> +# Contributor: Daniel Ehlers <[email protected]> + +pkgname=alsa-plugins +pkgver=1.0.23 +pkgrel=2 +pkgdesc="Extra alsa plugins" +arch=(i686 x86_64) +url="http://www.alsa-project.org" +license=(GPL) +depends=(alsa-lib) +makedepends=(pulseaudio jack ffmpeg) +optdepends=('pulseaudio: PulseAudio plugin' + 'jack: Jack plugin' + 'ffmpeg: libavcodec resampling plugin' + 'libsamplerate: libsamplerate resampling plugin' + 'speex: libspeexdsp resampling plugin') +options=('!libtool') +source=(ftp://ftp.alsa-project.org/pub/plugins/$pkgname-$pkgver.tar.bz2 + Fix_invalid_buffer_pointer_return_value.patch + Add_handle_underrun_option.patch) +md5sums=('a671f8102366c5b388133e948e1c85cb' + '067a51a5157a42989f60078d5225b6c1' + '56fb0e9cbef9714504ecaa1bb62d7acf') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # Improve pulse underrun handling + patch -Np1 -i "$srcdir/Fix_invalid_buffer_pointer_return_value.patch" + patch -Np1 -i "$srcdir/Add_handle_underrun_option.patch" + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR=$pkgdir install +} Property changes on: alsa-plugins/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
