21 lines
661 B
Python
21 lines
661 B
Python
version = "9.6"
|
|
revision = 1
|
|
description = "GNU core utilities (file, shell, and text manipulation)"
|
|
license = "GPL-3.0-or-later"
|
|
url = "https://www.gnu.org/software/coreutils/"
|
|
source = tarball(
|
|
url=f"https://ftp.gnu.org/gnu/coreutils/coreutils-{version}.tar.xz",
|
|
sha256="7a0124327b398fd9eb1a6abde583389821422c744ffa10734b24f557610d3283",
|
|
)
|
|
host_deps = ["autoconf", "automake", "binutils", "gcc"]
|
|
deps = [profile["libc"]]
|
|
|
|
configure, build, install = autotools(
|
|
configure_args=[
|
|
"--enable-no-install-program=kill,uptime",
|
|
"--without-selinux",
|
|
"--without-openssl",
|
|
],
|
|
configure_env={"FORCE_UNSAFE_CONFIGURE": "1"},
|
|
)
|