blob: d9b768c4afc326ee52da165cc132412583b2fb2b (
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
|
%undefine __cmake_in_source_build
Name: fmt
Version: 9.1.0
Release: 1
License: MIT
Summary: Small, safe and fast formatting library for C++
URL: https://github.com/fmtlib/fmt
Source0: https://github.com/fmtlib/fmt/archive/%{version}.tar.gz
BuildRequires: gcc gcc-c++ ninja-build cmake
%description
C++ Format is an open-source formatting library for C++. It can be used as a
safe alternative to printf or as a fast alternative to IOStreams.
%package devel
Summary: Development files for %{name}
Requires: %{name} = %{version}-%{release}
%description devel
This package contains the header file for using %{name}.
%prep
%autosetup -p1
%build
%cmake \
-G Ninja \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
cmake --build ./ %{?_smp_flags} --verbose
%install
DESTDIR="%{buildroot}" cmake --install ./
%check
ctest -VV %{?_smp_flags}
%files
%license LICENSE.rst
%doc ChangeLog.rst README.rst
%{_libdir}/lib%{name}.so.9*
%files devel
%{_includedir}/%{name}
%{_libdir}/lib%{name}.so
%{_libdir}/cmake/%{name}
%{_libdir}/pkgconfig/%{name}.pc
%changelog
* Mon Apr 24 2023 wangxiyuan1007 <wangxiyuan1007@gmail.com> - 9.1.0-1
- Upgrade to 9.1.0
* Fri Aug 26 2022 yangchenguang <yangchenguang@uniontech.com> - 8.0.1-2
- fix dependency compile failed
* Sat Aug 7 2021 liyanan <liyanan32@huawei.com> - 8.0.1-1
- package init
|