diff options
Diffstat (limited to 'extra/audacious/PKGBUILD')
-rw-r--r-- | extra/audacious/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/audacious/PKGBUILD b/extra/audacious/PKGBUILD new file mode 100644 index 000000000..7fd520906 --- /dev/null +++ b/extra/audacious/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 111201 2011-02-24 23:45:10Z bisson $ +# Contributor: Alexander Fehr <pizzapunk gmail com> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=audacious +pkgver=2.4.4 +pkgrel=1 +pkgdesc='Lightweight, GTK2-based advanced audio player focused on audio quality' +arch=('i686' 'x86_64') +url='http://audacious-media-player.org/' +license=('GPL3') +depends=('gtk2' 'libmcs' 'dbus-glib' 'libguess' 'audacious-plugins' 'desktop-file-utils' 'hicolor-icon-theme') +optdepends=('unzip: zipped skins support') +provides=('audacious-player') +replaces=('audacious-player') +install=audacious.install +source=("http://distfiles.atheme.org/$pkgname-$pkgver.tgz") +sha1sums=('697b2cc217cef9785cf7ec0c4ee617bc174fbe98') + +build() { + cd "$srcdir/$pkgname-$pkgver" + [[ $CARCH == x86_64 ]] && extraopts='' || extraopts='--disable-sse2' + ./configure --prefix=/usr $extraopts + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |