2948e415c1
Closes #8589. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
27 lines
953 B
Ruby
27 lines
953 B
Ruby
class AppEngineGo64 < Formula
|
|
desc "Google App Engine SDK for Go (AMD64)"
|
|
homepage "https://cloud.google.com/appengine/docs/go/"
|
|
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-1.9.48.zip"
|
|
sha256 "8e591a759d30b059c93d68845789854c67dba72a20091a10396a04fd60bfd279"
|
|
|
|
bottle :unneeded
|
|
|
|
conflicts_with "app-engine-go-32",
|
|
:because => "both install the same binaries"
|
|
conflicts_with "app-engine-python",
|
|
:because => "both install the same binaries"
|
|
|
|
def install
|
|
pkgshare.install Dir["*"]
|
|
%w[
|
|
api_server.py appcfg.py bulkloader.py bulkload_client.py dev_appserver.py download_appstats.py goapp
|
|
].each do |fn|
|
|
bin.install_symlink pkgshare/fn
|
|
end
|
|
(pkgshare/"goroot/pkg").install_symlink pkgshare/"goroot/pkg/darwin_amd64_appengine" => "darwin_amd64"
|
|
end
|
|
|
|
test do
|
|
assert_match(/^usage: goapp serve/, shell_output("#{bin}/goapp help serve").strip)
|
|
end
|
|
end
|