52 lines
1.5 KiB
Bash
52 lines
1.5 KiB
Bash
# Template file for 'dbus'
|
|
pkgname=dbus
|
|
version=1.10.16
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--disable-selinux --enable-inotify --with-dbus-user=dbus
|
|
--enable-xml-docs --disable-static --disable-tests --enable-epoll --disable-asserts
|
|
--disable-systemd --with-system-socket=/run/dbus/system_bus_socket --disable-doxygen-docs
|
|
--with-system-pid-file=/run/dbus/pid --with-console-auth-dir=/run/console
|
|
--enable-abstract-sockets --disable-user-session ac_cv_have_abstract_sockets=yes"
|
|
short_desc="Message bus system"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://dbus.freedesktop.org/"
|
|
distfiles="${homepage}/releases/dbus/dbus-${version}.tar.gz"
|
|
checksum=a7b0ba6ea3e8d0e08afec5e3030d0245614268276620c536726f8fa6e5c43388
|
|
|
|
hostmakedepends="pkg-config intltool gperf xmlto"
|
|
makedepends="expat-devel libX11-devel libcap-devel"
|
|
conf_files="/etc/dbus-1/session.conf /etc/dbus-1/system.conf"
|
|
|
|
# Create dbus:22 system account.
|
|
system_accounts="dbus:22"
|
|
|
|
post_install() {
|
|
vsv dbus
|
|
}
|
|
|
|
dbus-devel_package() {
|
|
depends="expat-devel dbus-libs>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/dbus-*"
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
dbus-libs_package() {
|
|
short_desc+=" - shared libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
dbus-x11_package() {
|
|
short_desc+=" - X11 support"
|
|
pkg_install() {
|
|
vmove usr/bin/dbus-launch
|
|
vmove usr/share/man/man1/dbus-launch.1
|
|
}
|
|
}
|