summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88e50e366456db34b0e9e4ebab7f20934fdb6071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Jozef Riha <jose1711 at gmail dot com>
# Contributor: Junker

pkgname=gvolwheel
pkgver=1.0.3
pkgrel=1
pkgdesc="a lightweight audio mixer which lets you control the audio volume through a tray icon"
url="https://github.com/Junker/gvolwheel"
arch=('i686' 'x86_64')
license=('GPL-2')
makedepends=('intltool')
depends=('gtk3' 'libgee')
source=("https://github.com/Junker/${pkgname}/archive/${pkgver}.zip")
md5sums=('a38dbc459ae3ea659a49ab8aebc20535')

build() {
    cd $srcdir/${pkgname}-$pkgver
    ./autogen.sh --prefix=/usr
    ./configure --prefix=/usr
    make
}

package() {
    cd $srcdir/${pkgname}-$pkgver
    make DESTDIR="$pkgdir" install
}