mas/Homebrew/mas-tap.rb

52 lines
2.6 KiB
Ruby
Raw Normal View History

2024-10-26 20:21:28 +00:00
# typed: strict
# frozen_string_literal: true
# mas command formula for custom tap (mas-cli/homebrew-tap).
class Mas < Formula
desc "Mac App Store command-line interface"
homepage "https://github.com/mas-cli/mas"
2018-10-21 04:34:49 +00:00
url "https://github.com/mas-cli/mas.git",
2024-11-17 17:31:37 +00:00
tag: "v1.8.8-beta.1",
revision: "ca921c07d806f6b76820cba8ddfd3ca8edfb145d"
license "MIT"
head "https://github.com/mas-cli/mas.git", branch: "main"
bottle do
2024-11-17 17:31:37 +00:00
root_url "https://github.com/mas-cli/mas/releases/download/v1.8.8-beta.1"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, arm64_ventura: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, arm64_monterey: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, sonoma: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, ventura: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, monterey: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, big_sur: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, catalina: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, mojave: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, high_sierra: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, sierra: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
sha256 cellar: :any_skip_relocation, el_capitan: "0d042a450d2623e3ea40db0b645454ee88d1a1763a7aa778eec5beea619b9a60"
end
depends_on :macos
on_arm do
depends_on xcode: ["12.2", :build]
end
on_intel do
depends_on xcode: ["12.0", :build]
end
def install
system "script/build"
system "script/install", prefix
bash_completion.install "contrib/completion/mas-completion.bash" => "mas"
2019-01-29 22:20:16 +00:00
fish_completion.install "contrib/completion/mas.fish"
end
test do
assert_equal version.to_s, shell_output("#{bin}/mas version").chomp
2021-05-07 04:19:37 +00:00
assert_includes shell_output("#{bin}/mas info 497799835"), "Xcode"
end
end