blob: 093f89418e7f4d1c681c817a296a560f3e1d37a8 (
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
29
|
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
|