summaryrefslogtreecommitdiff
path: root/packaging/libtracker.spec
blob: 7b2bd1c69b992e25e7b20de45af8382c1321385e (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
%define libname tracker

Name:       lib%{libname}
Summary:    tracker library for system information
Version:    1.0.1
Release:    1
Group:      System/Libraries
License:    Apache License, Version 2.0
Source0:    %{name}-%{version}.tar.gz
Source1001: %{name}.manifest
BuildRequires:  cmake
BuildRequires:  pkgconfig(capi-base-common)
BuildRequires:  pkgconfig(dlog)
BuildRequires:  pkgconfig(glib-2.0)

Requires(post): /sbin/ldconfig
Requires(postun): /sbin/ldconfig

%description
Tracker library for system information.

%package devel
Summary:    tracker library for system information (devel)
Group:      Development/Libraries
Requires:   %{name} = %{version}-%{release}

%description devel
Tracker library for system information (devel)

%prep
%setup -q
cp %{SOURCE1001} .


%build
MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`

%cmake . \
	-DCMAKE_INSTALL_PREFIX=%{_prefix} \
	-DLIBNAME=%{libname} \
	-DMAJORVER=${MAJORVER} \
	-DFULLVER=%{version}

make %{?jobs:-j%jobs}

%install
%make_install

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig


%files
%license LICENSE
%manifest %{name}.manifest
%{_libdir}/%{name}.so.*

%files devel
%manifest %{name}.manifest
%{_includedir}/%{name}/%{libname}.h
%{_libdir}/%{name}.so
%{_libdir}/pkgconfig/%{libname}.pc