diff options
author | Brendan Coles <bcoles@gmail.com> | 2021-04-08 07:11:06 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-08 09:17:42 +0200 |
commit | 6c3e0cc98a2a041280d3e8f7f4a63dc80ba40094 (patch) | |
tree | bea3060354fea3568853467ff75e8cce3f36652e /Ports | |
parent | 57749b175c1f0c7a45a504cb8b13147b2d1ec9cf (diff) | |
download | serenity-6c3e0cc98a2a041280d3e8f7f4a63dc80ba40094.zip |
Ports: Add GNU Multiple Precision Arithmetic Library (GMP)
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/AvailablePorts.md | 1 | ||||
-rwxr-xr-x | Ports/gmp/package.sh | 9 | ||||
-rw-r--r-- | Ports/gmp/patches/configfsf.sub.patch | 10 |
3 files changed, 20 insertions, 0 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 8b7be0cc51..aee1edcdfb 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -30,6 +30,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`gcc`](gcc/) | GNU Compiler Collection | 10.2.0 | https://gcc.gnu.org/ | | [`genemu`](genemu) | Genesis / MegaDrive Emulator | | https://github.com/rasky/genemu | | [`git`](git/) | Git | 2.26.0 | https://git-scm.com/ | +| [`gmp`](gmp/) | GNU Multiple Precision Arithmetic Library | 6.2.1 | https://gmplib.org/ | | [`gnuplot`](gnuplot/) | Gnuplot | 5.2.8 | http://www.gnuplot.info/ | | [`grep`](grep/) | GNU Grep | 2.5.4 | https://www.gnu.org/software/grep/ | | [`hatari`](hatari/) | Atari ST/STE/TT/Falcon emulator | 2.4.0-devel | https://hatari.tuxfamily.org/ | diff --git a/Ports/gmp/package.sh b/Ports/gmp/package.sh new file mode 100755 index 0000000000..d057e60590 --- /dev/null +++ b/Ports/gmp/package.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env -S bash ../.port_include.sh +port=gmp +version=6.2.1 +useconfigure="true" +files="https://ftp.gnu.org/gnu/gmp/gmp-${version}.tar.bz2 gmp-${version}.tar.bz2 +https://ftp.gnu.org/gnu/gmp/gmp-${version}.tar.bz2.sig gmp-${version}.tar.bz2.sig +https://ftp.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg" +auth_type="sig" +auth_opts="--keyring ./gnu-keyring.gpg gmp-${version}.tar.bz2.sig" diff --git a/Ports/gmp/patches/configfsf.sub.patch b/Ports/gmp/patches/configfsf.sub.patch new file mode 100644 index 0000000000..f9b442f185 --- /dev/null +++ b/Ports/gmp/patches/configfsf.sub.patch @@ -0,0 +1,10 @@ +--- gmp-6.2.1/configfsf.sub 2021-04-07 22:50:17.785886997 -0700 ++++ gmp-6.2.1/configfsf.sub.new 2021-04-07 22:50:15.041883314 -0700 +@@ -1691,6 +1691,7 @@ + # The portable systems comes first. + # Each alternative MUST end in a * to match a version number. + gnu* | android* | bsd* | mach* | minix* | genix* | ultrix* | irix* \ ++ | serenity* \ + | *vms* | esix* | aix* | cnk* | sunos | sunos[34]* \ + | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \ + | sym* | plan9* | psp* | sim* | xray* | os68k* | v88r* \ |