homebrew-core/Formula/go-app-engine-64.rb
2014-08-14 22:34:52 -07:00

17 lines
530 B
Ruby

require "formula"
class GoAppEngine64 < Formula
homepage "http://code.google.com/appengine/docs/go/overview.html"
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_amd64-1.9.9.zip"
sha1 "ddbc6b547d3cf1bbebc16ca29a3eb1d6fa3b451b"
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