File mdds-1_0.spec of Package mdds-1_0
#
# spec file for package mdds-1_0
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# redefined as we put there just devel docs
%define _docdir %{_defaultdocdir}/%{name}-devel
%define _apiver 1.0
%define _oname mdds
Name:           %{_oname}-1_0
Version:        1.1.0
Release:        0
Summary:        A collection of multi-dimensional data structure and indexing algorithm
License:        MIT
Group:          Development/Libraries/C and C++
Url:            http://code.google.com/p/multidimalgorithm/
Source:         http://kohei.us/files/%{_oname}/src/%{_oname}-%{version}.tar.bz2
BuildRequires:  boost-devel
BuildRequires:  gcc-c++
BuildRequires:  libstdc++-devel
BuildRequires:  pkg-config
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildArch:      noarch
%description
This library provides a collection of multi-dimensional data structure and indexing
algorithm.  All data structures are available as C++ templates, hence this is a
header-only library, with no shared library to link against.
%package        devel
Summary:        A collection of multi-dimensional data structure and indexing algorithm
Group:          Development/Libraries/C and C++
Requires:       boost-devel >= 1.39
%description    devel
This library provides a collection of multi-dimensional data structure and indexing
algorithms.  All data structures are available as C++ templates, hence this is a
header-only library, with no shared library to link against.
%prep
%setup -q -n %{_oname}-%{version}
%build
%configure \
    --disable-silent-rules \
    --docdir=%{_docdir}
make %{?_smp_mflags}
%check
make check %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
%files devel
%defattr(-,root,root)
%doc %{_docdir}-%{_apiver}
%{_includedir}/%{_oname}-%{_apiver}
%{_datadir}/pkgconfig/*.pc
%changelog