blob: 13aaa955239ebe0f474d922249dcd3dc5205b039 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
Name: neard
Summary: Near Field Communication Manager
Version: 0.12
Release: 1
Group: Connectivity/NFC
License: GPL-2.0
URL: http://git.kernel.org/pub/scm/network/nfc/neard.git
Source0: http://www.kernel.org/pub/linux/network/nfc/neard-%{version}.tar.bz2
Source1: neard.service
Source1001: neard.manifest
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(dbus-1)
BuildRequires: pkgconfig(libnl-3.0)
Requires: libnl3
Requires: systemd
Requires(post): systemd
Requires(preun): systemd
Requires(postun): systemd
%description
Near Field Communication Manager
%package devel
Summary: Development files for NFC Manager
Requires: %{name} = %{version}-%{release}
%description devel
neard-devel contains development files for use with neard.
%package test
Summary: Test Scripts for NFC Manager
Requires: %{name} = %{version}-%{release}
Requires: dbus-python
Requires: pygobject
%description test
Scripts for testing neard and its functionality
%prep
%setup -q
cp %{SOURCE1001} .
%build
./bootstrap
%configure \
--enable-debug \
--prefix=/usr \
--sysconfdir=/etc \
--enable-nfctype1=builtin \
--enable-nfctype2=builtin \
--enable-nfctype3=builtin \
--enable-nfctype4=builtin \
--enable-p2p=builtin \
--enable-test
make %{?jobs:-j%jobs}
%install
%make_install
# Systemd service file
install -d %{buildroot}%{_libdir}/systemd/system/
install -m 644 %{S:1} %{buildroot}%{_libdir}/systemd/system/neard.service
install -d %{buildroot}%{_libdir}/systemd/system/network.target.wants/
ln -s ../neard.service %{buildroot}%{_libdir}/systemd/system/network.target.wants/neard.service
mkdir -p %{buildroot}%{_sysconfdir}/neard
cp src/main.conf %{buildroot}%{_sysconfdir}/neard/main.conf
%post
systemctl daemon-reload
systemctl restart neard.service
%preun
systemctl stop neard.service
%postun
systemctl daemon-reload
%files
%manifest %{name}.manifest
%license COPYING
%{_mandir}/man*/*
%{_libexecdir}/nfc/neard
%config %{_sysconfdir}/neard/main.conf
%config %{_sysconfdir}/dbus-1/system.d/org.neard.conf
%{_libdir}/systemd/system/neard.service
%{_libdir}/systemd/system/network.target.wants/neard.service
%files devel
%manifest %{name}.manifest
%{_includedir}/near/*.h
%{_libdir}/pkgconfig/*.pc
%files test
%manifest %{name}.manifest
%defattr(-,root,root,-)
%{_libdir}/neard/test/*
|