mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
811 B
Bash
25 lines
811 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
|
# Contributor: Thar <mailbox.tec@gmail.com>
|
|
|
|
pkgname=gstreamer0.10-pulse
|
|
pkgver=0.9.7
|
|
pkgrel=1
|
|
pkgdesc="A GStreamer 0.10 plugin for the PulseAudio sound server"
|
|
arch=('i686' 'x86_64')
|
|
url="http://0pointer.de/lennart/projects/gst-pulse"
|
|
license=('LGPL')
|
|
depends=('gstreamer0.10-base' 'pulseaudio>=0.9.8')
|
|
conflicts=('gstreamer0.10-polyp')
|
|
provides=('gstreamer0.10-polyp')
|
|
replaces=('gstreamer0.10-polyp')
|
|
options=('!libtool')
|
|
source=(http://0pointer.de/lennart/projects/gst-pulse/gst-pulse-${pkgver}.tar.gz)
|
|
md5sums=('166164eb07eacd1d70b965731eb6cbdb')
|
|
|
|
build() {
|
|
cd ${startdir}/src/gst-pulse-${pkgver}
|
|
./configure --prefix=/usr --disable-lynx
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|