homebrew-core/Formula/go-app-engine-32.rb
2014-11-04 16:53:50 +00:00

17 lines
529 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.15.zip"
sha1 "e508ab163782a98578a5f5672867395f7cdabc9e"
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