blob: 988f43b9a1242ef090b6300031baa4630b725207 (
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
|
%global debug_package %{nil}
%global srcname sparse-map
%global _description %{expand:
The sparse-map library is a C++ implementation of a memory efficient hash map
and hash set. It uses open-addressing with sparse quadratic probing. The goal
of the library is to be the most memory efficient possible, even at low load
factor, while keeping reasonable performances.}
Name: tsl-%{srcname}
Version: 0.6.2
Release: %autorelease
Summary: C++ implementation of a memory efficient hash map and hash set
License: MIT
URL: https://github.com/Tessil/%{srcname}
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: boost-devel
%description %{_description}
%package devel
Summary: %{summary}
%description devel %{_description}
%prep
%autosetup -n %{srcname}-%{version}
%build
%cmake
%cmake_build
%install
%cmake_install
%check
pushd tests
%cmake
%cmake_build
./%{_vpath_builddir}/tsl_sparse_map_tests
%files devel
%license LICENSE
%doc README.md
# Directory shared with other libraries by the same author, e.g. robin-map
%dir %{_includedir}/tsl
%{_includedir}/tsl/sparse_*.h
%{_datadir}/cmake/%{name}
%changelog
%autochangelog
|