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-03-20 15:49:44 +00:00
|
|
|
tag: "v1.8.1",
|
|
|
|
revision: "23a36b4555f5625fe29915b31b8b101064452dca"
|
2020-09-07 16:09:28 +00:00
|
|
|
license "MIT"
|
2018-08-13 02:16:49 +00:00
|
|
|
head "https://github.com/mas-cli/mas.git"
|
|
|
|
|
|
|
|
bottle do
|
2019-01-13 07:56:55 +00:00
|
|
|
root_url "https://dl.bintray.com/phatblat/mas-bottles"
|
2021-03-20 19:15:19 +00:00
|
|
|
sha256 cellar: :any, arm64_big_sur: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
|
|
|
sha256 cellar: :any, big_sur: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
|
|
|
sha256 cellar: :any, catalina: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
|
|
|
sha256 cellar: :any, mojave: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
|
|
|
sha256 cellar: :any, high_sierra: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
|
|
|
sha256 cellar: :any, sierra: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
|
|
|
sha256 cellar: :any, el_capitan: "d54d864976f78665d5175fd9e69ab81b3911fa28fd6ae627b61a18d55d68191a"
|
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
|
|
|
|
depends_on xcode: ["11.4", :build]
|
|
|
|
end
|
2018-08-17 21:24:59 +00:00
|
|
|
|
2018-08-13 02:16:49 +00:00
|
|
|
def install
|
2018-10-21 04:34:49 +00:00
|
|
|
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
|
2019-01-13 06:52:42 +00:00
|
|
|
assert_include shell_output("#{bin}/mas info 497799835"), "Xcode"
|
2018-08-13 02:16:49 +00:00
|
|
|
end
|
|
|
|
end
|