2018-02-17 07:05:05 -07:00
|
|
|
class Mas < Formula
|
|
|
|
desc "Mac App Store command-line interface"
|
|
|
|
homepage "https://github.com/mas-cli/mas"
|
2018-10-14 22:07:41 -06:00
|
|
|
url "https://github.com/mas-cli/mas.git",
|
2018-12-19 21:24:16 -07:00
|
|
|
:tag => "v1.4.4",
|
|
|
|
:revision => "3660365dd334cd852dd83d42ee016e267821a5de"
|
2018-10-20 18:13:33 -06:00
|
|
|
head "https://github.com/mas-cli/mas.git"
|
2018-02-17 07:05:05 -07:00
|
|
|
|
|
|
|
bottle do
|
2018-11-17 19:31:14 -07:00
|
|
|
cellar :any
|
|
|
|
sha256 "d3668e4d128dfc8e062adc30c543ded35e7726dd9e021696e32a97d484e465fd" => :mojave
|
|
|
|
sha256 "fc6658113d785a660e3f4d2e4e134ad02fe003ffa7d69271a2c53f503aaae726" => :high_sierra
|
2018-02-17 07:05:05 -07:00
|
|
|
end
|
|
|
|
|
2018-12-27 16:22:00 -07:00
|
|
|
depends_on "trash"
|
2018-10-16 22:00:03 -06:00
|
|
|
depends_on "carthage" => :build
|
2018-12-19 21:24:16 -07:00
|
|
|
depends_on :xcode => ["10.1", :build]
|
2018-08-17 15:24:59 -06:00
|
|
|
|
2018-02-17 07:05:05 -07:00
|
|
|
def install
|
2018-12-20 19:00:56 -07:00
|
|
|
# Working around build issues in dependencies
|
|
|
|
# - Prevent warnings from causing build failures
|
|
|
|
# - Prevent linker errors by telling all lib builds to use max size install names
|
2018-10-16 22:00:03 -06:00
|
|
|
xcconfig = buildpath/"Overrides.xcconfig"
|
2018-10-20 18:20:16 -06:00
|
|
|
xcconfig.write <<~EOS
|
|
|
|
GCC_TREAT_WARNINGS_AS_ERRORS = NO
|
|
|
|
OTHER_LDFLAGS = -headerpad_max_install_names
|
|
|
|
EOS
|
2018-10-16 22:00:03 -06:00
|
|
|
ENV["XCODE_XCCONFIG_FILE"] = xcconfig
|
|
|
|
|
|
|
|
system "carthage", "bootstrap", "--platform", "macOS"
|
2018-10-17 16:48:35 -06:00
|
|
|
system "script/install", prefix
|
2018-08-12 21:43:06 -06:00
|
|
|
|
2018-08-16 17:38:42 -06:00
|
|
|
bash_completion.install "contrib/completion/mas-completion.bash" => "mas"
|
2018-08-12 21:43:06 -06:00
|
|
|
end
|
|
|
|
|
2018-02-17 07:05:05 -07:00
|
|
|
test do
|
|
|
|
assert_equal version.to_s, shell_output("#{bin}/mas version").chomp
|
|
|
|
end
|
|
|
|
end
|