diff options
author | J0WI <J0WI@users.noreply.github.com> | 2020-12-24 15:25:11 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-12-25 22:26:18 +0000 |
commit | 4ecab62e4374a0b5dce9d688999937d07e068a80 (patch) | |
tree | cff3bb47f0b2961b8472c74282db13474c7d1ceb | |
parent | 52ea931d3610d6ed59bb4f157a0b7e5ff6732bda (diff) |
main/fftw: upgrade to 3.3.9
-rw-r--r-- | main/fftw/APKBUILD | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/main/fftw/APKBUILD b/main/fftw/APKBUILD index 7d599969eb2..b58a73259ec 100644 --- a/main/fftw/APKBUILD +++ b/main/fftw/APKBUILD @@ -1,34 +1,32 @@ -# Contributor: -# Maintainer: +# Contributor: +# Maintainer: pkgname=fftw -pkgver=3.3.8 +pkgver=3.3.9 +_pkgver=${pkgver//p/-pl} pkgrel=0 pkgdesc="Discrete Fourier transform (DFT) library" -url="http://www.fftw.org" +url="http://www.fftw.org/" arch="all" license="GPL-2.0-or-later" makedepends="texinfo" # order of the libs split functions are important because of lib naming subpackages="$pkgname-dev $pkgname-doc $pkgname-single-libs:single $pkgname-long-double-libs:long_double $pkgname-double-libs:double" -srcpkgver=${pkgver//p/-pl} -source="http://www.fftw.org/$pkgname-$srcpkgver.tar.gz - cycle.h.patch" -builddir="$srcdir/$pkgname-$srcpkgver" +source="http://www.fftw.org/fftw-$_pkgver.tar.gz + cycle.h.patch + " _precision="single double long-double" # disable tests for arm due to bug with gcc >= 9 # see https://github.com/FFTW/fftw3/issues/213 case "$CARCH" in - armv7) options="$options !check" ;; - armhf) options="$options !check" ;; + armhf|armv7) options="$options !check";; esac prepare() { default_prepare - cd "$builddir" local i; for i in $_precision; do cp -r "$builddir" $srcdir/$i done @@ -100,5 +98,5 @@ long_double() { "$subpkgdir"/usr/lib/ } -sha512sums="ab918b742a7c7dcb56390a0a0014f517a6dff9a2e4b4591060deeb2c652bf3c6868aa74559a422a276b853289b4b701bdcbd3d4d8c08943acf29167a7be81a38 fftw-3.3.8.tar.gz +sha512sums="52ebc2a33063a41fd478f6ea2acbf3b511867f736591d273dd57f9dfca5d3e0b0c73157921b3a36f1a7cfd741a8a6bde0fd80de578040ae730ea168b5ba466cf fftw-3.3.9.tar.gz 7da269fc43dabd02ae6fad2ebad92b07e06825b6b7c6f8987fc6444f02e0d55080db4ba6e401760e071f5c33015faf8c710f643636cab7a79bdf1af5d434dbb4 cycle.h.patch" |