diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-05 16:53:58 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-02-07 05:47:40 +0000 |
commit | fac19101ad757ba149304bb386f63b7014a12246 (patch) | |
tree | b78e090371a6c3aeca895d3d397eec5e52d775d1 /main/fftw/APKBUILD | |
parent | c72003ef9109d30f9ac7dc5b8d87599c3d5aea42 (diff) | |
download | aports-fac19101ad757ba149304bb386f63b7014a12246.tar.bz2 aports-fac19101ad757ba149304bb386f63b7014a12246.tar.xz |
main/fftw: fix license, add test suite
Diffstat (limited to 'main/fftw/APKBUILD')
-rw-r--r-- | main/fftw/APKBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/main/fftw/APKBUILD b/main/fftw/APKBUILD index ca0f27c4cf..d102953694 100644 --- a/main/fftw/APKBUILD +++ b/main/fftw/APKBUILD @@ -2,10 +2,10 @@ # Maintainer: William Pitcock <nenolod@dereferenced.org> pkgname=fftw pkgver=3.3.6p2 -pkgrel=0 +pkgrel=1 pkgdesc="fastest fourier transform in the west" url="http://www.fftw.org/" -license="GPL" +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 @@ -57,6 +57,13 @@ build() { done } +check() { + for i in $_precision; do + cd "$srcdir"/$i + make check + done +} + package() { for i in $_precision; do cd "$srcdir"/$i |