← recipes

Commit 9650aec

0
plików
+0
dodanych
-0
usuniętych
@@ -1,48 +0,0 @@
1 -description="Freedesktop.org message bus system"
2 -url="https://www.freedesktop.org/wiki/Software/dbus/"
3 -
4 -packager="spiky <spiky@nutyx.org>"
5 -contributors="Pierre,Jayce,Tnut"
6 -
7 -# In case of rebuild systemd
8 -# dbus needs do be build once without systemd
9 -# in order to build systemd
10 -# 1/ dbus without systemd with following makedepends
11 -# makedepends=(expat)
12 -# and --disable-systemd
13 -# 2/ build systemd with dbus
14 -# 3/ build dbus with systemd with folling makedepends
15 -# makedepends=(systemd expat) and --enable-systemd
16 -
17 -makedepends=(systemd expat)
18 -
19 -set=(core)
20 -
21 -name=dbus
22 -version=1.14.10
23 -release=9
24 -
25 -
26 -PKGMK_GROUPS=(doc devel)
27 -source=(http://dbus.freedesktop.org/releases/dbus/$name-$version.tar.xz)
28 -
29 -build() {
30 - cd $name-$version
31 - ./configure --prefix=/usr \
32 - --sysconfdir=/etc \
33 - --localstatedir=/var \
34 - --disable-doxygen-docs \
35 - --disable-xml-docs \
36 - --disable-static \
37 - --docdir=/usr/share/doc/dbus-$version \
38 - --with-system-socket=/run/dbus/system_bus_socket \
39 - --enable-systemd
40 - make
41 - make DESTDIR=$PKG install
42 -
43 -}
44 -package(){
45 - ln -sfv /etc/machine-id $PKG/var/lib/dbus
46 - rm $PKG/usr/lib/libdbus-1.la
47 - rm $PKG/usr/bin/dbus-launch
48 -}