fftw: update to 3.3.3.
This commit is contained in:
parent
92cf5fa56b
commit
130265fc23
|
@ -1,16 +1,14 @@
|
|||
# Template file for 'fftw-devel'.
|
||||
#
|
||||
depends="libfftw"
|
||||
noarch=yes
|
||||
depends="libfftw>=${version}"
|
||||
short_desc="${short_desc} - Development files"
|
||||
long_desc="${long_desc}
|
||||
|
||||
This package contains files for development, headers, static libs, etc."
|
||||
|
||||
|
||||
do_install()
|
||||
{
|
||||
do_install() {
|
||||
vmove usr/include usr
|
||||
vmove "usr/lib/*.a" usr/lib
|
||||
vmove usr/lib/pkgconfig usr/lib
|
||||
vmove usr/share/info usr/share
|
||||
}
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
# Template file for 'fftw'
|
||||
pkgname=fftw
|
||||
version=3.3.2
|
||||
homepage="http://www.fftw.org/"
|
||||
distfiles="${homepage}/${pkgname}-${version}.tar.gz"
|
||||
makedepends="gcc-fortran"
|
||||
version=3.3.3
|
||||
revision=1
|
||||
short_desc="Library for computing the discrete Fourier transform (DFT)"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
license="GPL-2"
|
||||
checksum=b1236a780ca6e66fc5f8eda6ef0665d680e8253d9f01d7bf211b714a50032d01
|
||||
homepage="http://www.fftw.org/"
|
||||
distfiles="${homepage}/fftw-${version}.tar.gz"
|
||||
checksum=85cdfc0a0ba10d8fa4f0f8e733aac1a5936c859832a9e3d5c0731fb5c54a97f3
|
||||
long_desc="
|
||||
FFTW is a free collection of fast C routines for computing the Discrete
|
||||
Fourier Transform in one or more dimensions. It includes complex, real,
|
||||
|
@ -16,11 +15,11 @@ long_desc="
|
|||
efficiently. FFTW is typically faster than other publically-available FFT
|
||||
implementations, and is even competitive with vendor-tuned libraries."
|
||||
|
||||
subpackages="lib${pkgname} ${pkgname}-devel"
|
||||
|
||||
subpackages="libfftw fftw-devel"
|
||||
makedepends="gcc-fortran"
|
||||
|
||||
do_configure() {
|
||||
local CARGS="--enable-shared --enable-threads"
|
||||
local CARGS="--disable-static --enable-shared --enable-threads"
|
||||
|
||||
# double precision
|
||||
mkdir build-double
|
||||
|
|
Loading…
Reference in New Issue