homebrew-core/Formula/go-app-engine-32.rb
2015-01-17 22:57:13 -06:00

17 lines
530 B
Ruby

require "formula"
class GoAppEngine32 < Formula
homepage "https://code.google.com/appengine/docs/go/overview.html"
url "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_darwin_386-1.9.17.zip"
sha1 "1798e2d3366d9a7e05620e8174f92597e14e1723"
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