opt/dbus/Pkgfile

36 lines
868 B
Plaintext
Raw Normal View History

# Description: A message bus system
2021-01-26 14:05:43 +01:00
# URL: https://freedesktop.org/wiki/Software/dbus
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: expat
name=dbus
2020-07-02 19:39:14 +02:00
version=1.12.20
release=1
2018-03-02 21:05:30 +01:00
source=(https://dbus.freedesktop.org/releases/dbus/$name-$version.tar.gz \
2015-06-28 00:12:20 +02:00
rc.dbus 30-dbus.launch)
build() {
2017-11-17 23:38:21 +01:00
cd $name-$version
2021-01-26 14:05:43 +01:00
./configure \
--prefix=/usr \
2017-11-17 23:38:21 +01:00
--with-dbus-daemondir=/usr/sbin \
--localstatedir=/var \
2019-03-11 20:31:16 +01:00
--sysconfdir=/etc \
2017-11-17 23:38:21 +01:00
--libexecdir=/usr/lib/dbus \
--with-dbus-user=messagebus \
--with-init-scripts=none \
--with-system-pid-file=/var/run/$name/$name.pid
make
make DESTDIR=$PKG install
2021-01-26 14:05:43 +01:00
2017-11-17 23:38:21 +01:00
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
2021-01-26 14:05:43 +01:00
2017-11-17 23:38:21 +01:00
rm -r $PKG/usr/share/doc
rm -rf $PKG/usr/lib/cmake
rm -rf $PKG/usr/share/xml
}