mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
803 B
Bash
27 lines
803 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
|
||
|
pkgname=xmms-pulse
|
||
|
pkgver=0.9.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="An XMMS output plugin for the PulseAudio sound server"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://0pointer.de/lennart/projects/xmms-pulse"
|
||
|
license=('GPL')
|
||
|
depends=('xmms' 'pulseaudio')
|
||
|
groups=('xmms-plugins' 'xmms-io-plugins')
|
||
|
provides=('xmms-polyp')
|
||
|
conflicts=('xmms-polyp')
|
||
|
replaces=('xmms-polyp')
|
||
|
options=('!libtool')
|
||
|
source=(http://0pointer.de/lennart/projects/xmms-pulse/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('c879939a6242f07b69298b30bcdeb6c5')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --disable-lynx
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install
|
||
|
}
|