homebrew-core/Formula/parallel.rb

49 lines
1.4 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-20220122.tar.bz2"
mirror "https://ftpmirror.gnu.org/parallel/parallel-20220122.tar.bz2"
sha256 "b8221a21412bca572ad8445b7981dfd625a3c6d48772cda468dfb5b886337e00"
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, all: "6e77bbb9c73324762e8046d7c75cb809ed8864629c86d4838cf94d61f567b214"
end
conflicts_with "moreutils", because: "both install a `parallel` executable"
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
inreplace_files = [
bin/"parallel",
doc/"parallel.texi",
doc/"parallel_design.texi",
man1/"parallel.1",
man7/"parallel_design.7",
]
inreplace inreplace_files, "/usr/local", HOMEBREW_PREFIX
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