blob: 881ed5d6440c81cf3d843e425b2405702b09762b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=fftw
pkgver=3.3.6p2
pkgrel=2
pkgdesc="fastest fourier transform in the west"
url="http://www.fftw.org/"
# s390x: hangs on container and KVM
arch="all !s390x"
license="GPL-2.0+"
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"
_precision="single double long-double"
prepare() {
default_prepare
cd "$builddir"
local i; for i in $_precision; do
cp -r "$builddir" $srcdir/$i
done
}
build() {
local _openmp=
local i; for i in $_precision; do
case "$i" in
single) _cf="--enable-single";;
double) _cf="";;
long-double) _cf="--enable-long-double";;
esac
case "$i--$CARCH" in
single--x86_64 | double--x86_64)
_cf="$_cf --enable-sse2 --enable-avx";;
single--arm* | single--aarch64)
_cf="$_cf --enable-neon";;
esac
msg "Building for $i precision ($_cf)"
cd "$srcdir"/$i
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-shared \
--enable-threads \
$_openmp \
$_cf
make
done
}
check() {
local i; for i in $_precision; do
cd "$srcdir"/$i
make check
done
}
package() {
local i; for i in $_precision; do
cd "$srcdir"/$i
make DESTDIR="$pkgdir" install
done
}
single() {
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libfftw3f*.so* \
"$subpkgdir"/usr/lib/
}
double() {
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libfftw3*.so* \
"$subpkgdir"/usr/lib/
}
long_double() {
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/libfftw3l*.so* \
"$subpkgdir"/usr/lib/
}
sha512sums="e130309856752a1555b6d151c4d0ce9eb4b2c208fff7e3e89282ca8ef6104718f865cbb5e9c4af4367b3615b69b0d50fd001a26d74fd5324ff2faabe14fe3472 fftw-3.3.6-pl2.tar.gz
d71ffb0aa658f7b22239491698426f4a97e657abc953020745f7581d2937a062a279eaa5980cd7f7fe2e8425a032eafc3d4c0cffdc79a83a3aef382c988d739a cycle.h.patch"
|