diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/xmms-pulse/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/xmms-pulse/PKGBUILD')
-rw-r--r-- | community/xmms-pulse/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/xmms-pulse/PKGBUILD b/community/xmms-pulse/PKGBUILD new file mode 100644 index 000000000..019e8a140 --- /dev/null +++ b/community/xmms-pulse/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 68002 2012-03-17 00:12:40Z giovanni $ +# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> +# Contributor: Corrado Primier <bardo@aur.archlinux.org> +# Contributor: William Rea <sillywilly@gmail.com> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=xmms-pulse +pkgver=0.9.4 +pkgrel=3 +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') +options=('!libtool') +source=("http://0pointer.de/lennart/projects/xmms-pulse/${pkgname}-${pkgver}.tar.gz") +md5sums=('c879939a6242f07b69298b30bcdeb6c5') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr \ + --disable-lynx + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |