homebrew-core/Formula/app-engine-go-64.rb
2015-12-13 16:40:18 +00:00

23 lines
760 B
Ruby

class AppEngineGo64 < Formula
desc "Google App Engine SDK for Go!"
homepage "https://cloud.google.com/appengine/docs/go/"
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-1.9.30.zip"
sha256 "6e7df46f09a2ed7cb6c77ef267600959e904adbe3c37a38912249268097aa9ae"
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
cd ".."
share.install "go_appengine" => name
%w[
api_server.py appcfg.py bulkloader.py bulkload_client.py dev_appserver.py download_appstats.py goapp
].each do |fn|
bin.install_symlink share/name/fn
end
end
end