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

96 lines
1.8 KiB

15 years ago
%global do_mem_tests 0
%global do_perf_tests 0
Name: mdds
14 years ago
Version: 0.3.1
Release: 1%{?dist}
15 years ago
Summary: A collection of multi-dimensional data structures and indexing algorithms
Group: Development/Libraries
License: MIT
URL: http://code.google.com/p/multidimalgorithm/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Source0: http://multidimalgorithm.googlecode.com/files/%{name}_%{version}.tar.bz2
BuildRequires: boost-devel
%if %{do_mem_tests}
BuildRequires: valgrind
%endif
BuildArch: noarch
%description
A collection of multi-dimensional data structures and indexing algorithms.
It implements the following data structures:
* flat segment tree
* segment tree
* rectangle set
%package devel
Group: Development/Libraries
Summary: Headers for %{name}
Requires: boost-devel
%description devel
Headers for %{name}.
%prep
%setup -q -n %{name}_%{version}
# this is only used in tests
14 years ago
sed -i -e '/^CPPFLAGS/s/-Wall.*-std/%{optflags} -std/' Makefile.in
15 years ago
%build
14 years ago
%configure
15 years ago
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/%{_includedir}
mkdir %{buildroot}/%{_includedir}/mdds
14 years ago
cp -pr include/mdds/* %{buildroot}/%{_includedir}/mdds
15 years ago
%check
make %{?_smp_mflags}
for t in fst pqt recset st; do
make test.$t
done
%if %{do_perf_tests}
for t in recset st; do
make test.$t.perf
done
make test.stl
%endif
%if %{do_mem_tests}
for t in fst pqt recset st; do
make test.$t.mem
done
%endif
14 years ago
15 years ago
%clean
rm -rf %{buildroot}
14 years ago
15 years ago
%files devel
%defattr(-,root,root,-)
%{_includedir}/mdds
%doc AUTHORS NEWS README
%changelog
14 years ago
* Tue Nov 16 2010 David Tardon <dtardon@redhat.com> - 0.3.1-1
- new version
15 years ago
* 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