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

17 lines
528 B
Ruby

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