]> git.pld-linux.org Git - packages/armadillo.git/blob - armadillo.spec
- updated to 6.700.7
[packages/armadillo.git] / armadillo.spec
1 Summary:        C++ linear algebra library
2 Summary(pl.UTF-8):      Biblioteka C++ do algebry liniowej
3 Name:           armadillo
4 Version:        6.700.7
5 Release:        1
6 License:        MPL v2.0
7 Group:          Libraries
8 Source0:        http://downloads.sourceforge.net/arma/%{name}-%{version}.tar.gz
9 # Source0-md5:  8116185e1d7391eed3bf6c500f81b4d8
10 URL:            http://arma.sourceforge.net/
11 BuildRequires:  SuperLU-devel >= 4
12 BuildRequires:  arpack-devel
13 BuildRequires:  blas-devel
14 BuildRequires:  cmake >= 2.8
15 BuildRequires:  hdf5-devel
16 BuildRequires:  lapack-devel
17 BuildRequires:  libstdc++-devel
18 BuildRequires:  pkgconfig
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Armadillo is a C++ linear algebra library (matrix maths) aiming
23 towards a good balance between speed and ease of use. The syntax is
24 deliberately similar to Matlab.
25
26 %description -l pl.UTF-8
27 Armadillo to biblioteka C++ do algebry liniowej (obliczeń na
28 macierzach), której celem jest dobry kompromis między szybkością a
29 łatwością użycia. Składnia jest celowo podobna do Matlaba.
30
31 %package devel
32 Summary:        Header files for Armadillo library
33 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki Armadillo
34 Group:          Development/Libraries
35 Requires:       %{name} = %{version}-%{release}
36 Requires:       SuperLU >= 4
37 Requires:       arpack-devel
38 Requires:       blas-devel
39 Requires:       hdf5-devel
40 Requires:       lapack-devel
41 Requires:       libstdc++-devel
42 Obsoletes:      armadillo-static
43
44 %description devel
45 Header files for Armadillo library.
46
47 %description devel -l pl.UTF-8
48 Pliki nagłówkowe biblioteki Armadillo.
49
50 %package apidocs
51 Summary:        Armadillo API documentation
52 Summary(pl.UTF-8):      Dokumentacja API biblioteki Armadillo
53 Group:          Documentation
54 %if "%{_rpmversion}" >= "5"
55 BuildArch:      noarch
56 %endif
57
58 %description apidocs
59 API and internal documentation for Armadillo library.
60
61 %description apidocs -l pl.UTF-8
62 Dokumentacja API biblioteki Armadillo.
63
64 %prep
65 %setup -q
66
67 %build
68 %cmake . \
69         -DDETECT_HDF5=ON \
70         -DINSTALL_LIB_DIR=%{_libdir}
71
72 %{__make}
73
74 %install
75 rm -rf $RPM_BUILD_ROOT
76
77 %{__make} install \
78         DESTDIR=$RPM_BUILD_ROOT
79
80 %clean
81 rm -rf $RPM_BUILD_ROOT
82
83 %post   -p /sbin/ldconfig
84 %postun -p /sbin/ldconfig
85
86 %files
87 %defattr(644,root,root,755)
88 %doc LICENSE.txt README.txt docs.html
89 %attr(755,root,root) %{_libdir}/libarmadillo.so.*.*.*
90 %attr(755,root,root) %ghost %{_libdir}/libarmadillo.so.6
91
92 %files devel
93 %defattr(644,root,root,755)
94 %attr(755,root,root) %{_libdir}/libarmadillo.so
95 %{_includedir}/armadillo
96 %{_includedir}/armadillo_bits
97 %dir %{_datadir}/Armadillo
98 %{_datadir}/Armadillo/CMake
99
100 %files apidocs
101 %defattr(644,root,root,755)
102 %doc docs.html armadillo_icon.png armadillo_nicta_2010.pdf rcpp_armadillo_csda_2014.pdf
This page took 0.071483 seconds and 3 git commands to generate.