diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/gnome-alsamixer/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/gnome-alsamixer/PKGBUILD')
-rw-r--r-- | extra/gnome-alsamixer/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/gnome-alsamixer/PKGBUILD b/extra/gnome-alsamixer/PKGBUILD new file mode 100644 index 000000000..277ddcbde --- /dev/null +++ b/extra/gnome-alsamixer/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 49919 2009-08-16 21:30:55Z jgc $ +# Maintainer: damir <damir@archlinux.org> +# Contributor: Ben <ben@benmazer.net> + +pkgname=gnome-alsamixer +pkgver=0.9.6 +pkgrel=3 +pkgdesc="Gnome ALSA mixer" +arch=('i686' 'x86_64') +url="http://www.paw.za.org" +license=('GPL') +depends=('libgnomeui>=2.24.1') +source=(ftp://ftp.archlinux.org/other/gnome-alsamixer/${pkgname}-${pkgver}.tar.gz + gnome-alsamixer-0.9.6-gtk24.patch) +md5sums=('387623cfeb079d78325eed2d6bc94251' + '82b95a0df43429da5098b4da883f6bd0') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/gnome-alsamixer-0.9.6-gtk24.patch" || return 1 + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |