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",
|
2021-11-04 18:10:14 +00:00
|
|
|
tag: "v1.8.5",
|
|
|
|
revision: "9da3c3a1f72271e022f02897ed587f2ce1fcddf3"
|
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
|
2021-11-04 18:10:14 +00:00
|
|
|
root_url "https://github.com/mas-cli/mas/releases/download/v1.8.5"
|
|
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, monterey: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, big_sur: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, catalina: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, mojave: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, sierra: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
|
|
|
sha256 cellar: :any_skip_relocation, el_capitan: "2bf14f3f6cd15b18fe3c96585ceea2d2e538bf1c0c384aba4cd0ac78c19ea287"
|
2018-08-13 02:16:49 +00:00
|
|
|
end
|
|
|
|
|
2021-03-20 15:49:44 +00:00
|
|
|
depends_on :macos
|
2021-02-13 21:20:06 +00:00
|
|
|
if Hardware::CPU.arm?
|
|
|
|
depends_on xcode: ["12.2", :build]
|
|
|
|
else
|
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
|
2021-05-07 20:50:20 +00:00
|
|
|
system "script/build", "--universal"
|
|
|
|
system "script/install", "--universal", 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
|