blob: 39376269c4dece3514eb7f5410330b1001ace7c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# $Id: PKGBUILD 274760 2016-08-28 01:55:59Z heftig $
# Maintainer (Manjaro): Jan de Groot <jgc@archlinux.org>
# Maintainer (Manjaro): Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor (Manjaro): Tom Gundersen <teg@jklm.no>
# Contributor (Manjaro): Link Dupont <link@subpop.net>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
_url="https://raw.githubusercontent.com/gentoo/gentoo/master"
_pkgname=dbus
pkgname=dbus-openrc
pkgver=1.10.10
pkgrel=5
pkgdesc="Freedesktop.org message bus system"
url="https://wiki.freedesktop.org/www/Software/dbus/"
arch=("i686" "x86_64" "armv7h")
license=("GPL" "custom")
provides=("libdbus" "dbus")
depends=("libeudev" "expat")
makedepends=("eudev" "xmlto" "docbook-xsl" "python" "yelp-tools" "doxygen" 'libx11')
conflicts=("libdbus" "dbus")
source=("https://dbus.freedesktop.org/releases/$_pkgname/$_pkgname-$pkgver.tar.gz"
"dbus.initd::${_url}/sys-apps/dbus/files/dbus.initd-r1")
sha256sums=('9d8f1d069ab4d1a0255d7b400ea3bcef4430c42e729b1012abb2890e3f739a43'
'4491c09942d72fd464bc1da286c4f5a237ec8debfbaba83c6fbf4a46d46fe51e')
_inst_initd(){
install -Dm755 ${srcdir}/$1.initd ${pkgdir}/etc/init.d/$1
sed -e 's|#!/sbin/runscript|#!/usr/bin/openrc-run|' \
-e 's|#!/sbin/openrc-run|#!/usr/bin/openrc-run|' \
-e 's|/var/run|/run|g' \
-e 's|dbus.pid|dbus/pid|g' \
-i ${pkgdir}/etc/init.d/$1
}
prepare() {
cd $_pkgname-$pkgver
# autoreconf -fvi
}
build() {
cd $_pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=dbus \
--with-system-pid-file=/run/dbus/pid \
--with-system-socket=/run/dbus/system_bus_socket \
--with-console-auth-dir=/run/console/ \
--enable-inotify --disable-static \
--disable-verbose-mode --disable-asserts \
--disable-systemd --disable-user-session
make
}
check() {
cd $_pkgname-$pkgver
make check
}
package() {
cd $_pkgname-$pkgver
make DESTDIR="$pkgdir" install
rm -r "$pkgdir/var/run"
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$_pkgname/COPYING"
# Split docs
rm -rv "$pkgdir/usr/share/doc"
_inst_initd 'dbus'
}
|