]> git.pld-linux.org Git - packages/arpack.git/blob - arpack.spec
- ghost soname symlink
[packages/arpack.git] / arpack.spec
1 #
2 # Conditional build:
3 %bcond_with     acml    # With ACML version of BLAS instead of NETLIB implementation
4 #
5 Summary:        Subroutines for solving large scale eigenvalue problems
6 Summary(pl.UTF-8):      Rozwiązywanie zagadnienia własnego dla dużych macierzy
7 Name:           arpack
8 Version:        2.1
9 Release:        8%{?with_acml:ACML}
10 License:        Freely distributable
11 Group:          Libraries
12 Source0:        http://www.caam.rice.edu/software/ARPACK/SRC/%{name}96.tar.gz
13 # Source0-md5:  fffaa970198b285676f4156cebc8626e
14 Source1:        http://www.caam.rice.edu/software/ARPACK/SRC/patch.tar.gz
15 # Source1-md5:  14830d758f195f272b8594a493501fa2
16 Source2:        http://www.caam.rice.edu/software/ARPACK/SRC/ug.ps.gz
17 # Source2-md5:  79cc51e4812c75873adafcad2185842e
18 Source3:        http://www.caam.rice.edu/software/ARPACK/SRC/P57_58.ps.gz
19 # Source3-md5:  b86d77199f989fc438acaf7ac0433e76
20 Source4:        http://www.caam.rice.edu/software/ARPACK/SRC/P61_62.ps.gz
21 # Source4-md5:  d116887acb3d61fecf645c2d37d4d517
22 Patch0:         http://mathema.tician.de/news.tiker.net/files/arpack-arscnd-3.patch.gz
23 Patch1:         %{name}-automake_support.patch
24 Patch2:         %{name}-no_etime.patch
25 URL:            http://www.caam.rice.edu/software/ARPACK/
26 BuildRequires:  autoconf
27 BuildRequires:  automake
28 BuildRequires:  gcc-g77
29 BuildRequires:  libtool >= 2:1.5
30 %{!?with_acml:BuildRequires:    lapack-devel}
31 %{?with_acml:ExclusiveArch:     %{x8664}}
32 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34 %description
35 ARPACK software is capable of solving large scale symmetric,
36 nonsymmetric, and generalized eigenproblems from significant
37 application areas. The software is designed to compute a few (k)
38 eigenvalues with user specified features such as those of largest real
39 part or largest magnitude. Storage requirements are on the order of
40 n*k locations. No auxiliary storage is required. A set of Schur basis
41 vectors for the desired k-dimensional eigen-space is computed which is
42 numerically orthogonal to working precision. Numerically accurate
43 eigenvectors are available on request.
44
45 %description -l pl.UTF-8
46 Rozwiązywanie zagadnienia własnego (symetrycznego, niesymetrycznego,
47 ogólnego) dla dużych macierzy. Macierz może być dowolna, przy czym
48 procedury działają szczególnie dobrze w przypadku dużych macierzy
49 rzadkich bądź macierzy ze znaną strukturą. Biblioteka służy do
50 obliczenia kilku (k) wartości własnych o zadanych z góry własnościach,
51 takich jak największa (najmniejsza) część rzeczywista albo największy
52 (najmniejszy) moduł. Wymagania pamięciowe są rzędu n*k, żadna
53 dodatkowa pamięć (np. dyskowa) nie jest wymagana.
54
55 %package devel
56 Summary:        ARPACK development files
57 Summary(pl.UTF-8):      Pliki programistyczne ARPACK
58 Group:          Development/Libraries
59 Requires:       %{name} = %{version}-%{release}
60 %{!?with_acml:Requires: blas-devel}
61
62 %description devel
63 ARPACK development files.
64
65 %description devel -l pl.UTF-8
66 Pliki programistyczne ARPACK.
67
68 %package static
69 Summary:        Static ARPACK library
70 Summary(pl.UTF-8):      Statyczna biblioteka ARPACK
71 Group:          Development/Libraries
72 Requires:       %{name}-devel = %{version}-%{release}
73
74 %description static
75 Static ARPACK library.
76
77 %description static -l pl.UTF-8
78 Statyczna biblioteka ARPACK.
79
80 %prep
81 %setup -q -n ARPACK -b1
82 %patch0 -p1
83 %patch1 -p1
84 %patch2 -p1
85 cp %{SOURCE2} .
86 cp %{SOURCE3} .
87 cp %{SOURCE4} .
88
89 %build
90 %{__libtoolize}
91 %{__aclocal}
92 %{__autoheader}
93 %{__autoconf}
94 %{__automake}
95 %configure
96
97 %{__make}
98
99 %install
100 rm -rf $RPM_BUILD_ROOT
101
102 %{__make} install \
103         DESTDIR=$RPM_BUILD_ROOT
104
105 %clean
106 rm -fr $RPM_BUILD_ROOT
107
108 %post   -p /sbin/ldconfig
109 %postun -p /sbin/ldconfig
110
111 %files
112 %defattr(644,root,root,755)
113 %doc README
114 %attr(755,root,root) %{_libdir}/libarpack.so.*.*.*
115 %attr(755,root,root) %ghost %{_libdir}/libarpack.so.2
116
117 %files devel
118 %defattr(644,root,root,755)
119 %doc DOCUMENTS/*.doc *.ps.gz
120 %attr(755,root,root) %{_libdir}/libarpack.so
121 %{_libdir}/libarpack.la
122
123 %files static
124 %defattr(644,root,root,755)
125 %{_libdir}/libarpack.a
This page took 0.099902 seconds and 3 git commands to generate.