blob: c64c76c2c85f3dfaf233ecf60574e96c43800842 (
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
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=xfce4-volumed
pkgver=0.1.13
pkgrel=1
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-base0.10-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
}
md5sums="03c0ee58aa0a080d35313ac517a975ea xfce4-volumed-0.1.13.tar.bz2"
|