summaryrefslogtreecommitdiffstats
path: root/x11/dbus/APKBUILD
blob: 15aa3c9d77a644fab1a5f406bb22e12a24db32c9 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=dbus
pkgver=1.2.14
pkgrel=0
pkgdesc="Freedesktop.org message bus system"
url="http://www.freedesktop.org/Software/dbus"
license="GPL custom"
subpackages="$pkgname-dev $pkgname-doc"
depends=
makedepends="expat-dev libx11-dev pkgconfig"
install="$pkgname.pre-install"
source="http://$pkgname.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz
	$pkgname.initd
	$install
	"

build() {
	cd "$srcdir"/$pkgname-$pkgver
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--localstatedir=/var \
		--with-xml=expat \
		--with-dbus-user=messagebus \
		--with-system-pid-file=/var/run/dbus.pid \
		--disable-verbose-mode \
		--disable-static \
		--enable-inotify \
		--disable-dnotify \
		--disable-tests \
		--disable-asserts \
		--with-x || return 1
	make || return 1
	make DESTDIR="$pkgdir" install
	install -Dm755 "$srcdir"/dbus.initd "$pkgdir"/etc/init.d/dbus
}
md5sums="2c267ccd45d0b18db8c9edacad63ec98  dbus-1.2.14.tar.gz
58356b4db650a89312a670c02804c540  dbus.initd
1f3230e131a28409e8769c987b0f624a  dbus.pre-install"