homebrew-core/Formula/go-app-engine-64.rb
2015-06-05 14:47:57 +01:00

18 lines
559 B
Ruby

require "formula"
class GoAppEngine64 < 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.20.zip"
sha1 "2e95dd9176187503f9665b2ffabb93367e61474f"
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