blob: dbc0376030c0ca6b29342cca8f372395c170f8cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require "formula"
class GoogleAppEngine < Formula
homepage "https://developers.google.com/appengine/"
url "https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.18.zip"
sha256 "e113c3e68942f0661afe3b22bbe18d9574b42776cc14d4c3f2b761277b7f3d3e"
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
remote_api_shell.py
].each do |fn|
bin.install_symlink share/name/fn
end
end
end
|