opt/dbus/Pkgfile

28 lines
891 B
Plaintext
Raw Normal View History

# Description: A message bus system
2017-09-27 19:27:07 +02:00
# URL: https://freedesktop.org/wiki/Software/dbus
2010-08-17 22:45:26 +02:00
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: expat
name=dbus
2017-09-27 19:27:07 +02:00
version=1.10.24
2017-06-30 20:33:19 +02:00
release=1
source=(http://dbus.freedesktop.org/releases/dbus/$name-$version.tar.gz \
2015-06-28 00:12:20 +02:00
rc.dbus 30-dbus.launch)
build() {
2012-08-11 21:58:42 +02:00
cd $name-$version
./configure --prefix=/usr \
--with-dbus-daemondir=/usr/sbin \
--localstatedir=/var \
--libexecdir=/usr/lib/dbus \
--with-dbus-user=messagebus \
2013-10-10 23:41:24 +02:00
--with-init-scripts=none \
2012-08-11 21:58:42 +02:00
--with-system-pid-file=/var/run/$name/$name.pid
make
make DESTDIR=$PKG install
install -D -m 0755 $SRC/rc.dbus $PKG/etc/rc.d/dbus
install -D -m 0755 $SRC/30-dbus.launch \
$PKG/etc/X11/xinit/xinitrc.d/30-dbus.launch.sh
2012-08-11 21:58:42 +02:00
rm -r $PKG/usr/share/doc
}