auto-import changelog data from fftw-2.1.5-0.fdr.3.rh90.src.rpm
2.1.5-0.fdr.3 - Dropped post/preun scripts for info. 2.1.5-0.fdr.2 - Remove aesthetic comments. - buildroot -> RPM_BUILD_ROOT. - post/preun for info files.
This commit is contained in:
parent
d214c43a0a
commit
1cdce07d07
57
fftw.spec
57
fftw.spec
@ -1,20 +1,14 @@
|
|||||||
Summary: Fast Fourier Transform library.
|
|
||||||
Name: fftw
|
Name: fftw
|
||||||
Version: 2.1.5
|
Version: 2.1.5
|
||||||
Release: 0.fdr.1.rh80
|
Release: 0.fdr.3.rh90
|
||||||
Epoch: 0
|
Epoch: 0
|
||||||
License: GPL
|
Summary: Fast Fourier Transform library.
|
||||||
|
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source: http://www.fftw.org/fftw-%{version}.tar.gz
|
License: GPL
|
||||||
URL: http://www.fftw.org/
|
URL: http://www.fftw.org/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
Source0: ftp://ftp.fftw.org/pub/fftw/fftw-2.1.5.tar.gz
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
%package devel
|
|
||||||
Summary: Headers, libraries and docs for the FFTW library.
|
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
FFTW is a C subroutine library for computing the Discrete Fourier Transform
|
FFTW is a C subroutine library for computing the Discrete Fourier Transform
|
||||||
@ -24,6 +18,12 @@ become the FFT library of choice for most applications. Our benchmarks,
|
|||||||
performed on on a variety of platforms, show that FFTW's performance is
|
performed on on a variety of platforms, show that FFTW's performance is
|
||||||
typically superior to that of other publicly available FFT software.
|
typically superior to that of other publicly available FFT software.
|
||||||
|
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Headers, libraries and docs for the FFTW library.
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
FFTW is a C subroutine library for computing the Discrete Fourier Transform
|
FFTW is a C subroutine library for computing the Discrete Fourier Transform
|
||||||
(DFT) in one or more dimensions, of both real and complex data, and of
|
(DFT) in one or more dimensions, of both real and complex data, and of
|
||||||
@ -35,14 +35,14 @@ typically superior to that of other publicly available FFT software.
|
|||||||
This package contains header files and development libraries needed to
|
This package contains header files and development libraries needed to
|
||||||
develop programs using the FFTW fast Fourier transform library.
|
develop programs using the FFTW fast Fourier transform library.
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -c %{name}-%{version}
|
%setup -q -c %{name}-%{version}
|
||||||
mv %{name}-%{version} single
|
mv %{name}-%{version} single
|
||||||
cp -a single double
|
cp -a single double
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
pushd double
|
pushd double
|
||||||
@ -67,34 +67,35 @@ pushd single
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
rm -rf ${RPM_BUILD_ROOT}
|
||||||
pushd double
|
pushd double
|
||||||
%makeinstall
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
||||||
cp -a AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO ../
|
cp -a AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO ../
|
||||||
cp -a FAQ/fftw-faq.html/ doc/ ../
|
cp -a FAQ/fftw-faq.html/ doc/ ../
|
||||||
popd
|
popd
|
||||||
pushd single
|
pushd single
|
||||||
%makeinstall
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
||||||
popd
|
popd
|
||||||
rm -f doc/Makefile*
|
rm -f doc/Makefile*
|
||||||
|
find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';'
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf %{buildroot}
|
rm -rf ${RPM_BUILD_ROOT}
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@ -109,11 +110,17 @@ rm -rf %{buildroot}
|
|||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_infodir}/*
|
%{_infodir}/*
|
||||||
|
|
||||||
%exclude %{_libdir}/*.la
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Sep 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.3
|
||||||
|
- Dropped post/preun scripts for info.
|
||||||
|
|
||||||
|
* Wed Sep 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.2
|
||||||
|
- Remove aesthetic comments.
|
||||||
|
- buildroot -> RPM_BUILD_ROOT.
|
||||||
|
- post/preun for info files.
|
||||||
|
|
||||||
* Mon Apr 07 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.1
|
* Mon Apr 07 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.1
|
||||||
- Updated to 2.1.5.
|
- Updated to 2.1.5.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user