diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-04-17 15:59:35 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-04-17 15:59:35 -0300 |
commit | 6fed2edc6f9533e7894bbbacdbd1dbbb50076b01 (patch) | |
tree | fae0fe13e944d0265e921e57e355718c3ccd3f10 /extra/audacious/PKGBUILD | |
parent | 048b7287473507b76146e58378f4bfcfacf1060b (diff) | |
parent | 84837d89991e1e82e5aef8e297541c572ebf2efa (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/libmcs/PKGBUILD
extra/libmowgli/PKGBUILD
kde-unstable/kdepim/PKGBUILD
Diffstat (limited to 'extra/audacious/PKGBUILD')
-rw-r--r-- | extra/audacious/PKGBUILD | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/extra/audacious/PKGBUILD b/extra/audacious/PKGBUILD index 4986fad6c..0991e44fb 100644 --- a/extra/audacious/PKGBUILD +++ b/extra/audacious/PKGBUILD @@ -1,9 +1,10 @@ -# $Id: PKGBUILD 111201 2011-02-24 23:45:10Z bisson $ +# $Id: PKGBUILD 119918 2011-04-16 22:59:51Z bisson $ # Contributor: Alexander Fehr <pizzapunk gmail com> # Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname=audacious -pkgver=2.4.4 +pkgver=2.5.0 pkgrel=1 pkgdesc='Lightweight, GTK2-based advanced audio player focused on audio quality' arch=('i686' 'x86_64' 'mips64el') @@ -11,20 +12,21 @@ 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') +source=("http://distfiles.atheme.org/$pkgname-$pkgver.tgz") +sha1sums=('df76909c83a69b42197dab0702e0846295eceb1f') + provides=('audacious-player') replaces=('audacious-player') -install=audacious.install -source=("http://distfiles.atheme.org/$pkgname-$pkgver.tgz") -sha1sums=('697b2cc217cef9785cf7ec0c4ee617bc174fbe98') +install=install build() { - cd "$srcdir/$pkgname-$pkgver" - [[ $CARCH == x86_64 ]] && extraopts='' || extraopts='--disable-sse2' - ./configure --prefix=/usr $extraopts - make + 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 + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } |