homebrew-core/Formula/go-app-engine-32.rb
Andrew Barchuk c77c5bc764 go-app-engine-32 1.9.23
Closes Homebrew/homebrew#41161.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-06-29 16:52:54 +08:00

18 lines
557 B
Ruby

require "formula"
class GoAppEngine32 < 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_386-1.9.23.zip"
sha1 "43532c19ea8a0c282ddb93cdf8af079a280c2240"
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