blob: 2e14862c6a43020d050230bbea3ff17a60460566 (
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
|
Name: dbus-glib
Version: 0.100.2
Release: 0
License: AFL/GPL
Summary: GLib bindings for D-Bus
Url: http://www.freedesktop.org/software/dbus/
Group: System/Libraries
Source0: http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: expat-devel
BuildRequires: gettext-tools
BuildRequires: libtool
BuildRequires: pkgconfig(dbus-1)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(libxml-2.0)
%description
D-Bus add-on library to integrate the standard D-Bus library with
the GLib thread abstraction and main loop.
%package devel
Summary: Libraries and headers for the D-Bus GLib bindings
Group: Development/Libraries
Requires: %{name} = %{version}
%description devel
Headers and static libraries for the D-Bus GLib bindings
%prep
%setup -q
%build
%configure --disable-tests \
--enable-verbose-mode=yes \
--enable-asserts=yes \
--disable-gtk-doc
make %{?_smp_mflags}
%install
%make_install
# don't care about bash completion in a consumer device
rm -rf %{buildroot}%{_sysconfdir}/bash_completion.d/dbus-bash-completion.sh
rm -rf %{buildroot}%{_prefix}/libexec/dbus-bash-completion-helper
%docs_package
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%license COPYING
%{_libdir}/*glib*.so.*
%files devel
%{_libdir}/lib*.so
%{_libdir}/pkgconfig/dbus-glib-1.pc
%{_includedir}/dbus-1.0/dbus/*
%{_bindir}/dbus-binding-tool
|