mdds/mdds.spec

106 lines
2.5 KiB
RPMSpec

Name: mdds
Version: 0.6.0
Release: 0%{?dist}
Summary: A collection of multi-dimensional data structures and indexing algorithms
Group: Development/Libraries
License: MIT
URL: http://code.google.com/p/multidimalgorithm/
Source0: http://multidimalgorithm.googlecode.com/files/%{name}_%{version}.tar.bz2
Patch0: 0001-Fixes-build-breakage-on-Debian.patch
BuildRequires: boost-devel
BuildArch: noarch
%description
A collection of multi-dimensional data structures and indexing algorithms.
It implements the following data structures:
* segment tree
* flat segment tree
* rectangle set
* point quad tree
* multi type matrix
* multi type vector
%package devel
Group: Development/Libraries
Summary: Headers for %{name}
Requires: boost-devel
%description devel
Headers for %{name}.
%prep
%setup -q -n %{name}_%{version}
%patch0 -p1
# this is only used in tests
sed -i -e '/^CPPFLAGS/s/-Wall.*-std/%{optflags} -std/' Makefile.in
%build
%configure
%install
mkdir -p %{buildroot}/%{_includedir}
mkdir %{buildroot}/%{_includedir}/mdds
cp -pr include/mdds/* %{buildroot}/%{_includedir}/mdds
%check
make check %{?_smp_mflags}
%files devel
%{_includedir}/mdds
%doc AUTHORS COPYING NEWS README
%changelog
* Mon Jul 23 2012 David Tardon <dtardon@redhat.com> - 0.6.0-1
- new version
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Fri Nov 18 2011 David Tardon <dtardon@redhat.com> - 0.5.4-1
- new version
* Thu Jul 14 2011 David Tardon <dtardon@redhat.com> - 0.5.3-1
- new version
* Wed Mar 30 2011 David Tardon <dtardon@redhat.com> - 0.5.2-2
- install license
* Tue Mar 29 2011 David Tardon <dtardon@redhat.com> - 0.5.2-1
- new version
* Thu Mar 24 2011 David Tardon <dtardon@redhat.com> - 0.5.1-3
- Resolves: rhbz#680766 fix a crash and two other bugs
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sat Jan 08 2011 David Tardon <dtardon@redhat.com> - 0.5.1-1
- new version
* Tue Dec 21 2010 David Tardon <dtardon@redhat.com> - 0.4.0-1
- new version
* Tue Nov 16 2010 David Tardon <dtardon@redhat.com> - 0.3.1-1
- new version
* Wed Jul 07 2010 Caolán McNamara <caolanm@redhat.com> - 0.3.0-2
- rpmlint warnings
* Wed Jun 30 2010 David Tardon <dtardon@redhat.com> - 0.3.0-1
- initial import