homebrew-core/Formula/akamai.rb

34 lines
1.1 KiB
Ruby
Raw Normal View History

class Akamai < Formula
desc "CLI toolkit for working with Akamai's APIs"
homepage "https://github.com/akamai/cli"
url "https://github.com/akamai/cli/archive/0.4.0.tar.gz"
sha256 "9364ccedd21dfe520d59a05ea1d0fbd83c1b4da8e2dbb6686c829a3583e626fc"
2017-07-21 18:22:50 +00:00
bottle do
cellar :any_skip_relocation
2017-09-21 23:04:31 +00:00
sha256 "5d87ea02abbda2f1b8a5966ca84dd4414aeed2c6a2b1f89b221c17ac75230711" => :high_sierra
2017-09-14 04:36:59 +00:00
sha256 "e997cd826985bb4b41081866e8dfb3e4d10d544013057eb096f4c9b79fe30bd3" => :sierra
sha256 "f0c99cf085a3540494a3ff12832b81077ed0bd42e851e5f8892944ddcee2d5f1" => :el_capitan
2017-07-21 18:22:50 +00:00
end
depends_on "go" => :build
depends_on "glide" => :build
def install
ENV["GOPATH"] = buildpath
ENV["GLIDE_HOME"] = HOMEBREW_CACHE/"glide_home/#{name}"
srcpath = buildpath/"src/github.com/akamai/cli"
srcpath.install buildpath.children
cd srcpath do
system "glide", "install"
system "go", "build", "-tags", "noautoupgrade nofirstrun", "-o", bin/"akamai"
end
end
test do
assert_match "Purge", shell_output("#{bin}/akamai install --force purge")
end
end