b8fcb2a171
Upgrades App Engine SDKs to 1.9.4 across Java, Python, Go 32/64. SHAs verified from Google's download site at https://developers.google.com/appengine/downloads Closes Homebrew/homebrew#28943. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
29 lines
707 B
Ruby
29 lines
707 B
Ruby
require 'formula'
|
|
|
|
class GoogleAppEngine < Formula
|
|
homepage 'https://developers.google.com/appengine/'
|
|
url 'https://commondatastorage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.4.zip'
|
|
sha1 'ee44f7bcc16b4d72c3af0a4f744048d44f75c5ce'
|
|
|
|
def install
|
|
cd '..'
|
|
share.install 'google_appengine' => name
|
|
%w[
|
|
_python_runtime.py
|
|
_php_runtime.py
|
|
api_server.py
|
|
appcfg.py
|
|
bulkload_client.py
|
|
bulkloader.py
|
|
dev_appserver.py
|
|
download_appstats.py
|
|
endpointscfg.py
|
|
gen_protorpc.py
|
|
google_sql.py
|
|
old_dev_appserver.py
|
|
remote_api_shell.py
|
|
].each do |fn|
|
|
bin.install_symlink share/name/fn
|
|
end
|
|
end
|
|
end
|