glog/glog.spec

52 lines
1.4 KiB
RPMSpec
Raw Normal View History

2020-09-15 10:50:39 +08:00
Name: glog
2023-05-05 19:36:58 +08:00
Version: 0.6.0
2020-09-15 10:50:39 +08:00
Release: 1
Summary: A C++ application logging library
License: MIT
URL: https://github.com/google/glog
Source0: https://github.com/google/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
2023-05-05 19:36:58 +08:00
BuildRequires: gcc-c++ gcc gflags-devel >= 2.1.0 cmake
2020-09-15 10:50:39 +08:00
Requires: gflags gflags-devel >= 2.1.0
%description
Google glog is a library that implements application-level
logging. This library provides logging APIs based on C++-style
streams and various helper macros.
%package devel
Summary: Development files for %{name}
Requires: %{name} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%autosetup
%build
2023-05-05 19:36:58 +08:00
%cmake -DCMAKE_INSTALL_LIBDIR:PATH=%{_lib}
2020-09-15 10:50:39 +08:00
%make_build
%install
%make_install
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
rm -rf $RPM_BUILD_ROOT/%{_docdir}/%{name}-%{version}
%ldconfig_scriptlets
%files
2023-05-05 19:36:58 +08:00
%doc ChangeLog COPYING README.rst
2020-09-15 10:50:39 +08:00
%{_libdir}/libglog.so.*
%files devel
%{_libdir}/libglog.so
%{_libdir}/pkgconfig/libglog.pc
%dir %{_includedir}/glog
%{_includedir}/glog/*
2023-05-05 19:36:58 +08:00
%{_libdir}/cmake/glog
2020-09-15 10:50:39 +08:00
%changelog
2023-05-05 19:36:58 +08:00
* Fri May 5 2023 liyanan <thistleslyn@163.com> - 0.6.0-1
- update to 0.6.0
2020-09-15 10:50:39 +08:00
* Wed Sep 2 2020 huangyangke <huangyangke@huawei.com> - 0.3.5-1
- package init