diff options
Diffstat (limited to 'extra/xfce4-mixer/PKGBUILD')
-rw-r--r-- | extra/xfce4-mixer/PKGBUILD | 43 |
1 files changed, 21 insertions, 22 deletions
diff --git a/extra/xfce4-mixer/PKGBUILD b/extra/xfce4-mixer/PKGBUILD index 68466c27c..8e4733491 100644 --- a/extra/xfce4-mixer/PKGBUILD +++ b/extra/xfce4-mixer/PKGBUILD @@ -1,38 +1,37 @@ -# $Id: PKGBUILD 157863 2012-04-30 04:20:32Z foutrelis $ +# $Id: PKGBUILD 161812 2012-06-14 23:39:44Z foutrelis $ # Maintainer: Tobias Kieslich <tobias funnychar archlinux.org> pkgname=xfce4-mixer pkgver=4.8.0 -pkgrel=3 +pkgrel=4 pkgdesc="The volume control plugin for the Xfce panel" -arch=(i686 x86_64 'mips64el') -license=('GPL2') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xfce.org/" +license=('GPL2') groups=('xfce4') -depends=("xfce4-panel>=4.8.0" 'gstreamer0.10-base>=0.10.22' 'hicolor-icon-theme') +depends=('xfce4-panel' 'gstreamer0.10-base-plugins' 'hicolor-icon-theme') makedepends=('intltool') -optdepends=('gstreamer0.10-base-plugins: to support basic audio hardware' - 'gstreamer0.10-good-plugins: well supported hardware' - 'gstreamer0.10-bad-plugins: not so well supported hardware' - 'gstreamer0.10-ugly-plugins: might contain questionable license hardware') options=('!libtool') -install=${pkgname}.install -source=(http://archive.xfce.org/src/apps/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2) -md5sums=('3fa3a9973e18c04da26709a654e242ff') +install=$pkgname.install +source=(http://archive.xfce.org/src/apps/$pkgname/4.8/$pkgname-$pkgver.tar.bz2) +sha256sums=('9f9f48fdd0d3f6b1e46694b93a44d15b800db72a96d831b5111d9ac976970fab') build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --disable-static \ - --with-sound=alsa \ - --disable-debug + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug make } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et: |