forked from jfilak/reportd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
reportd.spec
58 lines (40 loc) · 1.07 KB
/
reportd.spec
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
%global _hardened_build 1
Name: reportd
Version: 0.7.4
Release: 1%{?dist}
Summary: Service reporting org.freedesktop.Problems2 entries
License: LGPL-2.1-or-later
URL: https://github.com/abrt/%{name}
Source0: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(libreport) >= 2.13.0
BuildRequires: meson
BuildRequires: systemd
%if 0%{?centos}
Recommends: libreport-centos
%endif
%if 0%{?fedora}
Recommends: libreport-fedora
%endif
%description
A D-Bus service that exports libreport functionality.
%prep
%autosetup
%build
%meson
%meson_build
%install
%meson_install
%check
%meson_test
%files
%doc NEWS README
%license COPYING
%{_libexecdir}/%{name}
%{_datadir}/dbus-1/services/org.freedesktop.%{name}.service
%{_datadir}/dbus-1/system-services/org.freedesktop.%{name}.service
%{_datadir}/dbus-1/system.d/org.freedesktop.%{name}.conf
%{_unitdir}/%{name}.service
%{_userunitdir}/%{name}.service
%changelog