mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
638 B
Bash
21 lines
638 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
# Contributor: Olivier Duclos <oliwer@free.fr>
|
|
|
|
pkgname=volwheel
|
|
pkgver=0.2.7
|
|
pkgrel=2
|
|
pkgdesc="Tray icon to change volume with the mouse"
|
|
arch=('i686' 'x86_64')
|
|
url="http://oliwer.net/b/volwheel.html"
|
|
license=('GPL3')
|
|
depends=('perl-gtk2-trayicon')
|
|
optdepends=("alsa-utils: for ALSA support"
|
|
"oss: for OSS support")
|
|
source=(http://olwtools.googlecode.com/files/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('c57b3ffde4db2fafe63013194f167fe6')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
./install.pl --prefix=/usr --destdir=${pkgdir} || return 1
|
|
}
|