]> git.pld-linux.org Git - packages/fftw.git/blob - fftw.spec
- fixed typos in pl description, removed false information about single
[packages/fftw.git] / fftw.spec
1 Summary:        Fast Fourier transform library
2 Summary(pl):    Biblioteka z funkacjami szybkiej transformaty Fouriera
3 Name:           fftw
4 Version:        2.1.3
5 Release:        9
6 License:        GPL
7 Group:          Libraries
8 Source0:        ftp://ftp.fftw.org/pub/fftw/%{name}-%{version}.tar.gz
9 Patch0:         %{name}-info.patch
10 Icon:           fftw-logo-thumb.gif
11 URL:            http://www.fftw.org/
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 FFTW is a collection of fast C routines for computing the Discrete
16 Fourier Transform in one or more dimensions. It includes complex,
17 real, and parallel transforms, and can handle arbitrary array sizes
18 efficiently. This RPM package includes the double precision FFTW
19 uniprocessor and threads libraries.
20
21 %description -l pl
22 FFTW jest zbiorem szybkich funkcji C do obliczania dyskretnych
23 transformat Fouriera w jednym lub wiêcej wymiarach. Zawiera równie¿
24 zespolone, rzeczywiste oraz równoleg³e transformaty i potrafi wydajnie
25 radziæ sobie z tablicami o dowolnych rozmiarach. Ten pakiet RPM
26 zawiera wersje FFTW o podwójnej precyzji dla architektur
27 jednoprocesorowych oraz z obs³ug± w±tków.
28
29 %package devel
30 Summary:        Headers, libraries & docs for fftw
31 Summary(pl):    Nag³ówki, biblioteki oraz dokumentacja do fftw
32 Group:          Development/Libraries
33 Requires:       %{name} = %{version}
34
35 %description devel
36 This package contains the additional header files, documentation and
37 libraries you need to develop programs using the FFTW (fast fourier
38 transform library).
39
40 %description devel -l pl
41 Ten pakiet zawiera dodatkowe pliki nag³ówkowe, dokumetacjê oraz
42 biblioteki niezbêdne do tworzenia programów u¿ywaj±cych biblioteki
43 FFTW (fast fourier transform library).
44
45 %package static
46 Summary:        Static fftw libraries
47 Summary(pl):    Statyczne biblioteki fftw
48 Group:          Development/Libraries
49 Requires:       %{name}-devel = %{version}
50
51 %description static
52 Static fftw libraries.
53
54 %description static -l pl
55 Statyczne biblioteki fftw.
56
57 %prep
58 %setup -q
59 %patch -p1
60
61 %build
62 %configure2_13 \
63 %ifarch %{ix86}
64         --enable-i386-hacks \
65 %endif
66         --enable-shared \
67         --enable-threads \
68         --%{!?debug:disable}%{?debug:enable}-debug
69
70 %{__make}
71
72 %install
73 rm -rf $RPM_BUILD_ROOT
74
75 %{__make} install DESTDIR=$RPM_BUILD_ROOT
76
77 %post   -p /sbin/ldconfig
78 %postun -p /sbin/ldconfig
79
80 %post devel
81 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
82
83 %postun devel
84 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
85
86 %clean
87 rm -rf $RPM_BUILD_ROOT
88
89 %files
90 %defattr(644,root,root,755)
91 %attr(755,root,root) %{_libdir}/lib*.so.*.*
92
93 %files devel
94 %defattr(644,root,root,755)
95 %attr(755,root,root) %{_libdir}/lib*.la
96 %attr(755,root,root) %{_libdir}/lib*.so
97 %{_includedir}/*
98 %{_infodir}/fftw.info*
99
100 %files static
101 %defattr(644,root,root,755)
102 %{_libdir}/lib*.a
This page took 0.041064 seconds and 4 git commands to generate.