mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
726 B
Bash
23 lines
726 B
Bash
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Ben <ben@benmazer.net>
|
|
|
|
pkgname=gnome-alsamixer
|
|
pkgver=0.9.6
|
|
pkgrel=3
|
|
pkgdesc="Gnome ALSA mixer"
|
|
arch=('arm')
|
|
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
|
|
}
|