mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
50758181a3
This commit updates the formatting for all ports to be updated in this PR in one go, to keep those changes centralized.
19 lines
441 B
Bash
Executable file
19 lines
441 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='mpc'
|
|
version='1.2.1'
|
|
useconfigure='true'
|
|
use_fresh_config_sub='true'
|
|
config_sub_paths=(
|
|
'build-aux/config.sub'
|
|
)
|
|
configopts=(
|
|
"--target=${SERENITY_ARCH}-pc-serenity"
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
|
)
|
|
files=(
|
|
"https://ftpmirror.gnu.org/gnu/mpc/mpc-${version}.tar.gz#17503d2c395dfcf106b622dc142683c1199431d095367c6aacba6eec30340459"
|
|
)
|
|
depends=(
|
|
'gmp'
|
|
'mpfr'
|
|
)
|