You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdds/mdds.spec

66 lines
1.3 KiB

# header-only library
%global debug_package %{nil}
1 year ago
%global apiversion 2.1
15 years ago
Name: mdds
1 year ago
Version: 2.1.1
Release: %autorelease
15 years ago
Summary: A collection of multi-dimensional data structures and indexing algorithms
License: MIT
10 years ago
URL: https://gitlab.com/mdds/mdds
Source0: http://kohei.us/files/%{name}/src/%{name}-%{version}.tar.bz2
15 years ago
BuildRequires: make
15 years ago
BuildRequires: boost-devel
BuildRequires: gcc-c++
BuildRequires: autoconf
15 years ago
%description
%{name} is a collection of multi-dimensional data structures and
indexing algorithms.
%package devel
Summary: Headers for %{name}
BuildArch: noarch
Requires: boost-devel
Provides: %{name}-static = %{version}-%{release}
%description devel
%{name} is a collection of multi-dimensional data structures and
indexing algorithms.
15 years ago
It implements the following data structures:
* segment tree
14 years ago
* flat segment tree
15 years ago
* rectangle set
14 years ago
* point quad tree
* multi type matrix
* multi type vector
15 years ago
See README.md for a brief description of the structures.
15 years ago
%prep
%autosetup -p1
15 years ago
%build
autoconf
14 years ago
%configure
15 years ago
%install
%make_install
rm -rf %{buildroot}%{_docdir}/%{name}
15 years ago
%check
13 years ago
make check %{?_smp_mflags}
15 years ago
%files devel
%{_includedir}/%{name}-%{apiversion}
%{_datadir}/pkgconfig/%{name}-%{apiversion}.pc
6 years ago
%doc AUTHORS README.md
%license LICENSE
15 years ago
%changelog
%autochangelog