1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 09:00:46 +00:00
serenity/Ports/libfftw3/package.sh
kleines Filmröllchen 7d0d44216e Ports: Add libfftw3
This is just the double-precision version of the already ported library.
2023-10-03 15:21:26 +02:00

15 lines
347 B
Bash
Executable File

#!/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}"