1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 09:27:46 +00:00

Ports: Add libfftw3

This is just the double-precision version of the already ported library.
This commit is contained in:
kleines Filmröllchen 2023-09-20 23:02:50 +02:00 committed by Tim Schumacher
parent 228022925a
commit 7d0d44216e
4 changed files with 104 additions and 0 deletions

14
Ports/libfftw3/package.sh Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='libfftw3'
version='3.3.10'
useconfigure='true'
use_fresh_config_sub='true'
configopts=(
'--disable-static'
'--enable-shared'
'--with-pic'
)
files=(
"http://fftw.org/fftw-${version}.tar.gz#56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467"
)
workdir="fftw-${version}"