summaryrefslogtreecommitdiffstats
path: root/testing/xfce4-volumed/APKBUILD
blob: d56f0c96f8516a66bdae0a8b4f6a654a8aeceab2 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xfce4-volumed
pkgver=0.1.13
pkgrel=0
pkgdesc="Daemon to add additional functionality to the volume keys of the keyboard"
url="https://launchpad.net/xfce4-volumed"
arch="all"
license="GPLv3+"
depends="xfce4-mixer"
makedepends="xfconf-dev libnotify-dev gst-plugins-base-dev keybinder-dev"
install=""
subpackages=""
source="http://archive.xfce.org/src/apps/xfce4-volumed/0.1/xfce4-volumed-$pkgver.tar.bz2"

_builddir="$srcdir"/xfce4-volumed-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--localstatedir=/var \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/lib/*.la
}

md5sums="03c0ee58aa0a080d35313ac517a975ea  xfce4-volumed-0.1.13.tar.bz2"