PKGBUILDs/core/dbus-core/PKGBUILD

55 lines
1.9 KiB
Bash
Raw Normal View History

2009-09-26 14:35:50 +00:00
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Link Dupont <link@subpop.net>
2009-09-26 15:21:59 +00:00
# Modified by OpenPogo
2009-09-26 14:35:50 +00:00
pkgname=dbus-core
pkgver=1.2.14
pkgrel=1
pkgdesc="Freedesktop.org message bus system"
url="http://www.freedesktop.org/Software/dbus"
arch=(arm)
license=('GPL' 'custom')
2009-09-26 15:21:59 +00:00
depends=('expat>=2.0' 'coreutils')
2009-09-26 14:35:50 +00:00
conflicts=('dbus<1.2.3-2')
options=(!libtool)
groups=('base')
install=dbus.install
source=(http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz
2009-09-26 15:21:59 +00:00
dbus)
2009-09-26 14:35:50 +00:00
md5sums=('2c267ccd45d0b18db8c9edacad63ec98'
2009-09-26 15:21:59 +00:00
'ae21f22ea7579ac0d70227eebc04e1f8')
2009-09-26 14:35:50 +00:00
build() {
cd "${srcdir}/dbus-${pkgver}"
2009-09-26 15:21:59 +00:00
./configure --prefix=/opt --sysconfdir=/opt/etc --localstatedir=/opt/var \
--libexecdir=/opt/lib/dbus-1.0 --with-dbus-user=81 \
--with-system-pid-file=/opt/var/run/dbus.pid \
2009-09-26 14:35:50 +00:00
--enable-inotify --disable-dnotify \
--disable-verbose-mode --disable-static \
--disable-tests --disable-asserts --without-x || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
2009-09-26 15:21:59 +00:00
rm -f "${pkgdir}/opt/bin/dbus-launch"
rm -f "${pkgdir}/opt/share/man/man1/dbus-launch.1"
2009-09-26 14:35:50 +00:00
2009-09-26 15:21:59 +00:00
chown 81:81 "${pkgdir}/opt/var/run/dbus" || return 1
2009-09-26 14:35:50 +00:00
2009-09-26 15:21:59 +00:00
install -m755 -d "${pkgdir}/opt/etc/rc.d" || return 1
install -m755 "${srcdir}/dbus" "${pkgdir}/opt/etc/rc.d/" || return 1
2009-09-26 14:35:50 +00:00
#Fix configuration file
2009-09-26 15:21:59 +00:00
sed -i -e 's|<user>81</user>|<user>dbus</user>|' "${pkgdir}/opt/etc/dbus-1/system.conf" || return 1
2009-09-26 14:35:50 +00:00
#install .keep files so pacman doesn't delete empty dirs
2009-09-26 15:21:59 +00:00
touch "${pkgdir}/opt/share/dbus-1/services/.keep" || return 1
touch "${pkgdir}/opt/share/dbus-1/system-services/.keep" || return 1
touch "${pkgdir}/opt/etc/dbus-1/session.d/.keep" || return 1
touch "${pkgdir}/opt/etc/dbus-1/system.d/.keep" || return 1
2009-09-26 14:35:50 +00:00
2009-09-26 15:21:59 +00:00
rmdir "${pkgdir}/opt/lib/dbus-1.0/dbus-1" || return 1
2009-09-26 14:35:50 +00:00
2009-09-26 15:21:59 +00:00
install -d -m755 "${pkgdir}/opt/share/licenses/dbus-core"
install -m644 COPYING "${pkgdir}/opt/share/licenses/dbus-core/" || return 1
2009-09-26 14:35:50 +00:00
}