Name: privilege-info Summary: Privilege Information Version: 0.0.7 Release: 1 Group: Security/API License: Apache-2.0 Source0: %{name}-%{version}.tar.gz Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig BuildRequires: cmake BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(dlog) BuildRequires: pkgconfig(capi-base-common) BuildRequires: pkgconfig(security-privilege-manager) BuildRequires: pkgconfig(libtzplatform-config) BuildRequires: pkgconfig(capi-system-info) %if 0%{?gcov:1} BuildRequires: lcov %endif Requires: tizen-locale %description Provides Privilege Information(Privilege Info) API %package -n privilege-info-devel Summary: Privilege Info API (Development) Group: Security/Development Requires: %{name} = %{version}-%{release} %description -n privilege-info-devel The Privilege Info API provides functions to get privilege information (DEV) %package -n tc-privilege-info Summary: Privilege Info TC Group: Security/Testing Requires: %{name} = %{version}-%{release} %description -n tc-privilege-info Privilege Info API Internal Test %if 0%{?gcov:1} %package gcov Summary: Privilege Info(gcov) Group: Security/Testing %description gcov New Privilege Info gcov objects %endif %prep %setup -q %build export CFLAGS="$CFLAGS -DTIZEN_ENGINEER_MODE" export CXXFLAGS="$CXXFLAGS -DTIZEN_ENGINEER_MODE" export FFLAGS="$FFLAGS -DTIZEN_ENGINEER_MODE" %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 echo cmake . -DPREFIX=%{_prefix} \ -DLIBDIR=%{_libdir} \ -DINCLUDEDIR=%{_includedir} \ -DCMAKE_BUILD_TYPE=%{build_type} \ -DVERSION=%{version} \ -DTZ_SYS_RO_PACKAGES=%TZ_SYS_RO_PACKAGES \ -DTZ_SYS_RO_APP=%TZ_SYS_RO_APP \ -DBUILD_GCOV={?gcov:1}%{!?gcov:0} cmake . -DPREFIX=%{_prefix} \ -DLIBDIR=%{_libdir} \ -DINCLUDEDIR=%{_includedir} \ -DCMAKE_BUILD_TYPE=%{build_type} \ -DVERSION=%{version} \ -DTZ_SYS_RO_PACKAGES=%TZ_SYS_RO_PACKAGES \ -DTZ_SYS_RO_APP=%TZ_SYS_RO_APP \ -DBUILD_GCOV={?gcov:1}%{!?gcov:0} make %{?jobs:-j%jobs} %if 0%{?gcov:1} mkdir -p gcov-obj find . \( -name '*.gcno' ! -name 'tc_*' \) -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 -n privilege-info -p /sbin/ldconfig %postun -n privilege-info -p /sbin/ldconfig %files -n privilege-info %{_libdir}/libprivilege-info.so* %license LICENSE.Apache-2.0 %manifest packaging/privilege-info.manifest %files -n privilege-info-devel %{_includedir}/privilege_information.h %{_libdir}/pkgconfig/privilege-info.pc %files -n tc-privilege-info %{_bindir}/tc-privilege-info %if 0%{?gcov:1} %files gcov %{_datadir}/gcov/obj/* %endif %clean rm -rf %{buildroot}