2efc967c8d
Closes Homebrew/homebrew#35801. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
532 B
Ruby
17 lines
532 B
Ruby
require "formula"
|
|
|
|
class GoAppEngine64 < Formula
|
|
homepage "https://code.google.com/appengine/docs/go/overview.html"
|
|
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-1.9.17.zip"
|
|
sha1 "c88aa3e50f56f8c1b3d27cdaee68d2c17ac4ed22"
|
|
|
|
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
|