mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-02 12:30:31 +00:00
Ports: Add MPFR
Required to build the toolchain inside Serenity.
This commit is contained in:
parent
6fe8d1da97
commit
36af58c187
Notes:
sideshowbarker
2024-07-18 07:58:36 +09:00
Author: https://github.com/Lubrsi Commit: https://github.com/SerenityOS/serenity/commit/36af58c1875 Pull-request: https://github.com/SerenityOS/serenity/pull/9076
3 changed files with 23 additions and 0 deletions
|
@ -92,6 +92,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
|
|||
| [`mawk`](mawk/) | mawk | 1.3.4-20200120 | https://invisible-island.net/mawk/ |
|
||||
| [`mbedtls`](mbedtls/) | Mbed TLS | 2.16.2 | https://tls.mbed.org/ |
|
||||
| [`milkytracker`](milkytracker/) | milkytracker | 1.03.00 | https://github.com/milkytracker/MilkyTracker |
|
||||
| [`mpfr`](mpfr/) | GNU Multiple Precision Floating-Point Reliable Library (MPFR) | 4.1.0 | https://www.mpfr.org/ |
|
||||
| [`mrsh`](mrsh/) | mrsh | d9763a3 | https://mrsh.sh/ |
|
||||
| [`mysthous`](mysthous/) | Hi-Res Adventure #1: Mystery House | 1.0 | https://www.scummvm.org/games/#games-hires1 |
|
||||
| [`nano`](nano/) | GNU nano | 5.8 | https://www.nano-editor.org/ |
|
||||
|
|
11
Ports/mpfr/package.sh
Executable file
11
Ports/mpfr/package.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=mpfr
|
||||
version=4.1.0
|
||||
useconfigure=true
|
||||
configopts="--target=${SERENITY_ARCH}-pc-serenity --with-sysroot=/"
|
||||
files="https://ftpmirror.gnu.org/gnu/mpfr/mpfr-${version}.tar.xz mpfr-${version}.tar.xz
|
||||
https://ftpmirror.gnu.org/gnu/mpfr/mpfr-${version}.tar.xz.sig mpfr-${version}.tar.xz.sig
|
||||
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
|
||||
auth_type="sig"
|
||||
auth_opts="--keyring ./gnu-keyring.gpg mpfr-${version}.tar.xz.sig"
|
||||
depends="gmp"
|
11
Ports/mpfr/patches/config.sub.patch
Normal file
11
Ports/mpfr/patches/config.sub.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- mpfr-4.1.0/config.sub 2020-07-10 12:59:02.000000000 +0100
|
||||
+++ mpfr-4.1.0.serenity/config.sub 2021-07-28 18:05:59.462525103 +0100
|
||||
@@ -1390,7 +1390,7 @@
|
||||
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
||||
| -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
|
||||
| -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \
|
||||
- | -midnightbsd*)
|
||||
+ | -midnightbsd* | -serenity*)
|
||||
# Remember, each alternative MUST END IN *, to match a version number.
|
||||
;;
|
||||
-qnx*)
|
Loading…
Reference in a new issue