2021-07-28 20:38:58 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
|
|
|
port=mpc
|
|
|
|
version=1.2.1
|
|
|
|
useconfigure=true
|
2022-01-08 16:32:29 +03:00
|
|
|
use_fresh_config_sub=true
|
2022-05-25 13:51:13 +03:00
|
|
|
config_sub_paths=("build-aux/config.sub")
|
2022-04-19 01:28:51 +03:00
|
|
|
configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--with-sysroot=${SERENITY_INSTALL_ROOT}")
|
2021-07-28 20:38:58 +03:00
|
|
|
files="https://ftpmirror.gnu.org/gnu/mpc/mpc-${version}.tar.gz mpc-${version}.tar.gz
|
|
|
|
https://ftpmirror.gnu.org/gnu/mpc/mpc-${version}.tar.gz.sig mpc-${version}.tar.gz.sig
|
|
|
|
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
|
|
|
|
auth_type="sig"
|
2021-09-27 01:16:18 +03:00
|
|
|
auth_opts=("--keyring" "./gnu-keyring.gpg" "mpc-${version}.tar.gz.sig")
|
|
|
|
depends=("gmp" "mpfr")
|