compat-32/dbus-32/Pkgfile

28 lines
668 B
Plaintext
Raw Normal View History

# Description: A message bus system
# URL: http://freedesktop.org/wiki/Software/dbus
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: expat-32 dbus
name=dbus-32
2016-12-12 09:19:04 +01:00
version=1.10.14
release=1
2014-06-20 12:55:12 +02:00
source=(http://dbus.freedesktop.org/releases/dbus/dbus-$version.tar.gz)
build() {
cd dbus-$version
2015-05-16 20:37:01 +02:00
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--with-dbus-daemondir=/usr/sbin \
--localstatedir=/var \
--libexecdir=/usr/lib32/dbus \
--with-dbus-user=messagebus \
2015-11-21 03:29:44 +01:00
--with-init-scripts=none \
--with-system-pid-file=/var/run/dbus/dbus.pid
2015-05-16 20:37:01 +02:00
make
make DESTDIR=$PKG install
2014-06-20 12:55:12 +02:00
2014-06-22 10:18:09 +02:00
rm -r $PKG/var $PKG/usr/{bin,etc,include,sbin,share}
}