mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f81e47eea8
Some ports may have more than one `config.sub` that is in use (vendored dependencies, etc.). Instead of fiddling about with space-delimited strings, let's just make that setting into an array right away.
19 lines
976 B
Bash
Executable file
19 lines
976 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=coreutils
|
|
version=9.1
|
|
useconfigure="true"
|
|
use_fresh_config_sub="true"
|
|
config_sub_paths=("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")
|
|
|
|
# Exclude some non-working utilities:
|
|
# - arch, coreutils, and hostname are already excluded in the default configuration
|
|
# - chcon and runcon are SELinux utilities
|
|
# - df requires one of the read_file_system_list implementations in gnulib/lib/mountlist.c
|
|
# - pinky, users, and who require utmp
|
|
# - nice is just something that doesn't exist
|
|
configopts+=("--enable-no-install-program=arch,coreutils,hostname,chcon,runcon,df,pinky,users,who,nice")
|