1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 13:30:45 +00:00

Ports: Add FFTW port

This commit is contained in:
circl 2022-03-19 16:51:15 +01:00 committed by Linus Groh
parent ce5f34f153
commit adcd39d928
2 changed files with 10 additions and 0 deletions

View File

@ -85,6 +85,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
| [`libatomic_ops`](libatomic_ops/) | libatomic\_ops | 7.6.10 | https://www.hboehm.info/gc/ |
| [`libexpat`](libexpat/) | Expat | 2.2.9 | https://libexpat.github.io/ |
| [`libffi`](libffi/) | libffi | 3.4.2 | https://www.sourceware.org/libffi/ |
| [`libfftw3f`](libfftw3f/) | Fastest Fourier Transform in the West (single precision) | 3.3.10 | https://www.fftw.org/ |
| [`libgcrypt`](libgcrypt/) | libgcrypt | 1.9.2 | https://gnupg.org/software/libgcrypt/index.html |
| [`libgd`](libgd/) | libgd | 2.3.3 | https://libgd.github.io/ |
| [`libgpg-error`](libgpg-error/) | libgpg-error | 1.42 | https://gnupg.org/software/libgpg-error/index.html |

9
Ports/libfftw3f/package.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=libfftw3f
version=3.3.10
useconfigure=true
configopts=("--enable-float")
use_fresh_config_sub=true
files="http://fftw.org/fftw-${version}.tar.gz fftw-${version}.tar.gz 56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467"
auth_type=sha256
workdir="fftw-${version}"