source: projects/specs/trunk/e/eigen2/eigen2-vl.spec @ 1916

Revision 1916, 1.6 KB checked in by inagaki, 14 years ago (diff)

rebuilt with rpm-4.8.1: arts, cln, dotconf, dbusmenu-qt, dbus-python, eet, eigen2, kdegraphics, kdebindings, lcms
updated: dbus-python, eigen2, lcms

Line 
1%define _with_check -DEIGEN_BUILD_TESTS:BOOL=ON
2
3Name:    eigen2
4Summary: A lightweight C++ template library for vector and matrix math
5Version: 2.0.15
6Release: 1%{?_dist_release}
7Group:   System Environment/Libraries
8License: GPLv2+ or LGPLv3+
9URL:     http://eigen.tuxfamily.org/
10Source0: http://bitbucket.org/eigen/eigen2/get/%{name}-%{version}.tar.bz2
11
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13BuildArch: noarch
14BuildRequires: cmake
15BuildRequires: pkgconfig
16#docs
17BuildRequires: doxygen graphviz
18
19%description
20%{summary}
21
22%package devel
23Summary: A lightweight C++ template library for vector and matrix math
24Group:   Development/Libraries
25# -devel subpkg only atm, compat with other distros
26Provides: %{name} = %{version}-%{release}
27
28%description devel
29%{summary}
30
31
32%prep
33%setup -q -n eigen
34
35%build
36mkdir -p %{_target_platform}
37pushd %{_target_platform}
38%cmake ..
39popd
40
41make %{?_smp_mflags} -C %{_target_platform}
42
43# docs
44doxygen
45
46
47%install
48rm -rf $RPM_BUILD_ROOT
49make install DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
50
51%clean
52rm -rf %{buildroot}
53
54
55%files devel
56%defattr(-,root,root,-)
57%doc COPYING COPYING.LESSER
58%doc html/
59%{_includedir}/eigen2
60%{_datadir}/pkgconfig/eigen2.pc
61
62%changelog
63* Sun Sep 26 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.15-1
64- new upstream release
65- built with rpm-4.8.1 for pkg-config
66
67* Thu Nov 12 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.9-1
68- new upstream release
69
70* Mon Oct 19 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.6-1
71- new upstream release
72
73* Sat Sep  5 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.0.5-1
74- Initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.