homebrew-core/Formula/parallel.rb

57 lines
2.1 KiB
Ruby

class Parallel < Formula
desc "Shell command parallelization utility"
homepage "https://savannah.gnu.org/projects/parallel/"
url "https://ftp.gnu.org/gnu/parallel/parallel-20220822.tar.bz2"
mirror "https://ftpmirror.gnu.org/parallel/parallel-20220822.tar.bz2"
sha256 "9d0d4457c40b45ac6034f3085a11fee94489e5d58e422c0b492cb143d71ab016"
license "GPL-3.0-or-later"
version_scheme 1
head "https://git.savannah.gnu.org/git/parallel.git", branch: "master"
livecheck do
url :homepage
regex(/GNU Parallel v?(\d{6,8}).*? released/i)
end
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "5bf2e34ec842abea40e7366e58a7f9bf3b6ab0a37fd7546ed50e36ab812ae35f"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "5bf2e34ec842abea40e7366e58a7f9bf3b6ab0a37fd7546ed50e36ab812ae35f"
sha256 cellar: :any_skip_relocation, monterey: "08d4b2cb728aa314f047ce81e3f0442e792a39661ed89f47632cd6f1d20501ce"
sha256 cellar: :any_skip_relocation, big_sur: "08d4b2cb728aa314f047ce81e3f0442e792a39661ed89f47632cd6f1d20501ce"
sha256 cellar: :any_skip_relocation, catalina: "08d4b2cb728aa314f047ce81e3f0442e792a39661ed89f47632cd6f1d20501ce"
sha256 cellar: :any_skip_relocation, x86_64_linux: "5bf2e34ec842abea40e7366e58a7f9bf3b6ab0a37fd7546ed50e36ab812ae35f"
end
conflicts_with "moreutils", because: "both install a `parallel` executable"
def install
ENV.append_path "PATH", bin
system "./configure", "--prefix=#{prefix}"
system "make", "install"
inreplace_files = [
bin/"parallel",
doc/"parallel_design.texi",
man1/"parallel.1",
man7/"parallel_design.7",
]
# Ignore `inreplace` failures when building from HEAD or not building a bottle.
inreplace inreplace_files, "/usr/local", HOMEBREW_PREFIX, build.stable? && build.bottle?
end
def caveats
<<~EOS
To use the --csv option, the Perl Text::CSV module has to be installed.
You can install it via:
perl -MCPAN -e'install Text::CSV'
EOS
end
test do
assert_equal "test\ntest\n",
shell_output("#{bin}/parallel --will-cite echo ::: test test")
end
end