~ubuntu-branches/ubuntu/wily/mdds/wily-proposed

« back to all changes in this revision

Viewing changes to misc/mdds.spec

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2011-09-26 23:16:31 UTC
  • Revision ID: package-import@ubuntu.com-20110926231631-azqj55grt79hb164
Tags: 0.5.3-3
* rm -f VERSION example/Makefile misc/mdds.spec (closes: #643215) 
* don't let Makefile install stuff into /usr/share/doc/mdds 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Name:           mdds
2
 
Version:        0.5.3
3
 
Release:        1
4
 
Url:            http://code.google.com/p/multidimalgorithm/
5
 
License:        MIT/X11
6
 
Source:         %{name}_%{version}.tar.bz2
7
 
Group:          Development/Libraries/C and C++
8
 
Summary:        A collection of multi-dimensional data structure and indexing algorithm
9
 
BuildArch:      noarch
10
 
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
11
 
BuildRequires:  gcc-c++, libstdc++-devel, boost-devel 
12
 
Requires:       boost-devel >= 1.39
13
 
 
14
 
%description
15
 
This library provides a collection of multi-dimensional data structure and indexing
16
 
algorithm.  All data structures are available as C++ templates, hence this is a 
17
 
header-only library, with no shared library to link against.
18
 
 
19
 
Authors:
20
 
--------
21
 
    Kohei Yoshida <kyoshida@novell.com>
22
 
 
23
 
%package        devel
24
 
Url:            http://code.google.com/p/multidimalgorithm/
25
 
License:        MIT/X11
26
 
Group:          Development/Libraries/C and C++
27
 
Summary:        A collection of multi-dimensional data structure and indexing algorithm
28
 
 
29
 
%description    devel
30
 
This library provides a collection of multi-dimensional data structure and indexing
31
 
algorithms.  All data structures are available as C++ templates, hence this is a 
32
 
header-only library, with no shared library to link against.
33
 
 
34
 
Authors:
35
 
--------
36
 
    Kohei Yoshida <kyoshida@novell.com>
37
 
 
38
 
%define _docdir %{_defaultdocdir}/%{name}-devel
39
 
 
40
 
%prep
41
 
%setup -q -n %{name}_%{version}
42
 
 
43
 
%build
44
 
%configure --docdir=%{_docdir}
45
 
 
46
 
%check
47
 
#make check
48
 
 
49
 
%install
50
 
make DESTDIR=%buildroot install
51
 
 
52
 
%clean
53
 
rm -rf %buildroot
54
 
 
55
 
%files devel
56
 
%defattr(-,root,root)
57
 
%doc %{_docdir}
58
 
%{_includedir}/%{name}
59
 
 
60
 
%changelog