homebrew-core/Formula/archiver.rb

47 lines
1.9 KiB
Ruby

class Archiver < Formula
desc "Cross-platform, multi-format archive utility"
homepage "https://github.com/mholt/archiver"
url "https://github.com/mholt/archiver/archive/v3.5.0.tar.gz"
sha256 "8f2e3ad68553f6b58bf99e8635ff0953f62ff0a7804da7658954ffaa7d0aaa0a"
license "MIT"
head "https://github.com/mholt/archiver.git", branch: "master"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "d717896d49eb78330bc10d6cb050cc0c3bf7f89d84f1dd5f4fce3529ced17776"
sha256 cellar: :any_skip_relocation, big_sur: "6bfb5db8669181ff5e16202ae62154973505ff2ee57a67c53aac97409b98e8f0"
sha256 cellar: :any_skip_relocation, catalina: "a61d7f77c7e3a291af4afa1edc6a6059c3f48c4c9828303c805e51e69902caf0"
sha256 cellar: :any_skip_relocation, mojave: "eb27d3455b2ef6e30317f9be5d54e3c15196b8736209ebc5cc8ac95f3058d1ee"
sha256 cellar: :any_skip_relocation, high_sierra: "50d359a1201e04663c8a42b3736c11c9d0f046a814d3ec5af00d0326822474ff"
sha256 cellar: :any_skip_relocation, x86_64_linux: "313f339111caeb3fb28bd9eb12b6e34030c10bf8d06058f1687174c374b137da"
end
depends_on "go" => :build
def install
system "go", "build", "-trimpath", "-o", bin/"arc", "cmd/arc/main.go"
end
test do
output = shell_output("#{bin}/arc --help 2>&1")
assert_match "Usage: arc {archive|unarchive", output
(testpath/"test1").write "Hello!"
(testpath/"test2").write "Bonjour!"
(testpath/"test3").write "Moien!"
system "#{bin}/arc", "archive", "test.zip",
"test1", "test2", "test3"
assert_predicate testpath/"test.zip", :exist?
assert_match "Zip archive data",
shell_output("file -b #{testpath}/test.zip")
output = shell_output("#{bin}/arc ls test.zip")
names = output.lines.map do |line|
columns = line.split(/\s+/)
File.basename(columns.last)
end
assert_match "test1 test2 test3", names.join(" ")
end
end