summaryrefslogtreecommitdiff
path: root/packaging/capi-media-streamrecorder.spec
blob: 340ef6651578636068b2cfabdc1fe34edfe77b79 (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
Name:       capi-media-streamrecorder
Summary:    A Streamrecorder library in Tizen Native API
Version:    0.0.27
Release:    0
Group:      Multimedia/Other
License:    Apache-2.0
Source0:    %{name}-%{version}.tar.gz
BuildRequires:  cmake
BuildRequires:  pkgconfig(dlog)
Buildrequires:  pkgconfig(mm-streamrecorder)
BuildRequires:  pkgconfig(capi-base-common)
BuildRequires:  pkgconfig(capi-media-tool)
BuildRequires:  pkgconfig(libtbm)
Requires(post): /sbin/ldconfig
Requires(postun): /sbin/ldconfig

%description
A StreamRecorder library in Tizen Native API to record live buffer sent by the application


%package devel
Summary:  A StreamRecorder library in Tizen Native API (Development)
Requires: %{name} = %{version}-%{release}


%description devel
A MediaStreamRecorder library in Tizen Native API Development Package to record live buffer

%if 0%{?gcov:1}
%package gcov
Summary: Line Coverage of Stream Recorder library in Tizen C API
Group: Development/Multimedia

%description gcov
Collection of files related to Line Coverage. It is teseted as gcov for a stream recorder library in Tizen native API
%endif

%prep
%setup -q


%build
%if 0%{?gcov:1}
export CFLAGS+=" -fprofile-arcs -ftest-coverage"
export CXXFLAGS+=" -fprofile-arcs -ftest-coverage"
export FFLAGS+=" -fprofile-arcs -ftest-coverage"
export LDFLAGS+=" -lgcov"
%endif

MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
%cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DFULLVER=%{version} -DMAJORVER=${MAJORVER}


make %{?jobs:-j%jobs}

%if 0%{?gcov:1}
mkdir -p gcov-obj
find . -name '*.gcno' -exec cp '{}' gcov-obj ';'
%endif

%install
rm -rf %{buildroot}
%make_install

%if 0%{?gcov:1}
mkdir -p %{buildroot}%{_datadir}/gcov/obj
install -m 0644 gcov-obj/* %{buildroot}%{_datadir}/gcov/obj
%endif

%post -p /sbin/ldconfig


%postun -p /sbin/ldconfig

%files
%manifest capi-media-streamrecorder.manifest
%license LICENSE.APLv2
%{_libdir}/libcapi-media-streamrecorder.so.*
%{_bindir}/*

%files devel
%{_includedir}/media/streamrecorder.h
%{_libdir}/pkgconfig/*.pc
%{_libdir}/libcapi-media-streamrecorder.so

%if 0%{?gcov:1}
%files gcov
%{_datadir}/gcov/obj/*
%endif