homebrew-core/Formula/go-app-engine-32.rb

18 lines
518 B
Ruby
Raw Normal View History

2014-06-10 21:53:06 +00:00
require "formula"
class GoAppEngine32 < Formula
2015-03-08 11:00:51 +00:00
homepage "https://cloud.google.com/appengine/docs/go/"
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_386-1.9.18.zip"
sha1 "5f74eba1b77dddca9122ba355e6348e8cc833031"
def install
2014-06-10 21:53:06 +00:00
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|
2014-03-25 15:07:45 +00:00
bin.install_symlink share/name/fn
end
end
end