2024-10-26 20:21:28 +00:00
|
|
|
# typed: strict
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# mas command formula for custom tap (mas-cli/homebrew-tap).
|
2018-08-13 02:16:49 +00:00
|
|
|
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"
|
2020-09-07 16:09:28 +00:00
|
|
|
license "MIT"
|
2021-10-25 23:46:39 +00:00
|
|
|
head "https://github.com/mas-cli/mas.git", branch: "main"
|
2018-08-13 02:16:49 +00:00
|
|
|
|
|
|
|
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"
|
2023-11-25 20:56:42 +00:00
|
|
|
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"
|
2018-08-13 02:16:49 +00:00
|
|
|
end
|
|
|
|
|
2021-03-20 15:49:44 +00:00
|
|
|
depends_on :macos
|
2023-11-25 20:56:42 +00:00
|
|
|
on_arm do
|
2021-02-13 21:20:06 +00:00
|
|
|
depends_on xcode: ["12.2", :build]
|
2023-11-25 20:56:42 +00:00
|
|
|
end
|
|
|
|
on_intel do
|
2021-05-02 19:57:48 +00:00
|
|
|
depends_on xcode: ["12.0", :build]
|
2021-02-13 21:20:06 +00:00
|
|
|
end
|
2018-08-17 21:24:59 +00:00
|
|
|
|
2018-08-13 02:16:49 +00:00
|
|
|
def install
|
2023-11-25 20:56:42 +00:00
|
|
|
system "script/build"
|
|
|
|
system "script/install", prefix
|
2018-08-13 02:16:49 +00:00
|
|
|
|
|
|
|
bash_completion.install "contrib/completion/mas-completion.bash" => "mas"
|
2019-01-29 22:20:16 +00:00
|
|
|
fish_completion.install "contrib/completion/mas.fish"
|
2018-08-13 02:16:49 +00:00
|
|
|
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"
|
2018-08-13 02:16:49 +00:00
|
|
|
end
|
|
|
|
end
|