Ports: Add GNU core utilities

This commit is contained in:
Tim Schumacher 2022-03-29 02:54:50 +02:00 committed by Andreas Kling
parent 4ba39c8d63
commit de7aa80669
Notes: sideshowbarker 2024-07-17 14:32:16 +09:00
2 changed files with 12 additions and 0 deletions

View File

@ -25,6 +25,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^
| [`cmake`](cmake/) | CMake | 3.23.0 | https://cmake.org/ |
| [`cmatrix`](cmatrix/) | cmatrix | 3112b12 | https://github.com/abishekvashok/cmatrix |
| [`composer`](composer/) | Composer | 2.1.3 | https://getcomposer.org/ |
| [`coreutils`](coreutils/) | GNU core utilities | 9.0 | https://www.gnu.org/software/coreutils/ |
| [`cfunge`](cfunge/) | cfunge | 2bc4fb2 | https://github.com/VorpalBlade/cfunge/ |
| [`curl`](curl/) | curl | 7.82.0 | https://curl.se/ |
| [`dash`](dash/) | DASH | 0.5.10.2 | http://gondor.apana.org.au/~herbert/dash |

11
Ports/coreutils/package.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=coreutils
version=9.0
useconfigure="true"
use_fresh_config_sub="true"
config_sub_path=build-aux/config.sub
files="https://ftpmirror.gnu.org/gnu/coreutils/coreutils-${version}.tar.gz coreutils-${version}.tar.gz
https://ftpmirror.gnu.org/gnu/coreutils/coreutils-${version}.tar.gz.sig coreutils-${version}.tar.gz.sig
https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg"
auth_type="sig"
auth_opts=("--keyring" "./gnu-keyring.gpg" "coreutils-${version}.tar.gz.sig")