homebrew-core/Formula/coreutils.rb

111 lines
3.8 KiB
Ruby

class Coreutils < Formula
desc "GNU File, Shell, and Text utilities"
homepage "https://www.gnu.org/software/coreutils"
url "https://ftp.gnu.org/gnu/coreutils/coreutils-8.32.tar.xz"
mirror "https://ftpmirror.gnu.org/coreutils/coreutils-8.32.tar.xz"
sha256 "4458d8de7849df44ccab15e16b1548b285224dbba5f08fac070c1c0e0bcc4cfa"
license "GPL-3.0-or-later"
bottle do
rebuild 2
sha256 arm64_big_sur: "e7d88d2b7a91a57dfd37c2ea14752d1bb116f25694eab1161d6e8088f7db5921"
sha256 big_sur: "371ec57703b3646e0113331308b6e03617c2a7f91e15e113380b605455daba20"
sha256 catalina: "7a97ad96dfbe6abbb5c94424518a077e040af8a77d1946ca960a5f33cd237551"
sha256 mojave: "10fbad2e35846c7e835cb979b5beb9edf07f3a9742ddcc3c28d9abd5fe9ccb1b"
sha256 x86_64_linux: "6d0ddc3ead1b8259a9a97b7bc9cc891cbc5a236a82afd51f224de16affea0b54"
end
head do
url "https://git.savannah.gnu.org/git/coreutils.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "bison" => :build
depends_on "gettext" => :build
depends_on "texinfo" => :build
depends_on "wget" => :build
depends_on "xz" => :build
end
uses_from_macos "gperf" => :build
on_linux do
depends_on "attr"
end
conflicts_with "aardvark_shell_utils", because: "both install `realpath` binaries"
conflicts_with "b2sum", because: "both install `b2sum` binaries"
conflicts_with "ganglia", because: "both install `gstat` binaries"
conflicts_with "gdu", because: "both install `gdu` binaries"
conflicts_with "gegl", because: "both install `gcut` binaries"
conflicts_with "idutils", because: "both install `gid` and `gid.1`"
conflicts_with "md5sha1sum", because: "both install `md5sum` and `sha1sum` binaries"
conflicts_with "truncate", because: "both install `truncate` binaries"
conflicts_with "uutils-coreutils", because: "coreutils and uutils-coreutils install the same binaries"
def install
system "./bootstrap" if build.head?
args = %W[
--prefix=#{prefix}
--program-prefix=g
--without-gmp
--without-selinux
]
system "./configure", *args
system "make", "install"
# Symlink all commands into libexec/gnubin without the 'g' prefix
coreutils_filenames(bin).each do |cmd|
(libexec/"gnubin").install_symlink bin/"g#{cmd}" => cmd
end
# Symlink all man(1) pages into libexec/gnuman without the 'g' prefix
coreutils_filenames(man1).each do |cmd|
(libexec/"gnuman"/"man1").install_symlink man1/"g#{cmd}" => cmd
end
libexec.install_symlink "gnuman" => "man"
# Symlink non-conflicting binaries
no_conflict = %w[
b2sum base32 chcon hostid md5sum nproc numfmt pinky ptx realpath runcon
sha1sum sha224sum sha256sum sha384sum sha512sum shred shuf stdbuf tac timeout truncate
]
no_conflict += ["dir", "dircolors", "vdir"] if OS.linux?
no_conflict.each do |cmd|
bin.install_symlink "g#{cmd}" => cmd
man1.install_symlink "g#{cmd}.1" => "#{cmd}.1"
end
end
def caveats
msg = "Commands also provided by macOS"
on_linux do
msg = "All commands"
end
<<~EOS
#{msg} have been installed with the prefix "g".
If you need to use these commands with their normal names, you
can add a "gnubin" directory to your PATH from your bashrc like:
PATH="#{opt_libexec}/gnubin:$PATH"
EOS
end
def coreutils_filenames(dir)
filenames = []
dir.find do |path|
next if path.directory? || path.basename.to_s == ".DS_Store"
filenames << path.basename.to_s.sub(/^g/, "")
end
filenames.sort
end
test do
(testpath/"test").write("test")
(testpath/"test.sha1").write("a94a8fe5ccb19ba61c4c0873d391e987982fbbd3 test")
system bin/"gsha1sum", "-c", "test.sha1"
system bin/"gln", "-f", "test", "test.sha1"
end
end