blob: c8c2aa785d10ea64b12e7d10b69261574a9ce812 (
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
30
|
require 'formula'
class GoogleAppEngine < Formula
homepage 'https://developers.google.com/appengine/'
url 'http://googleappengine.googlecode.com/files/google_appengine_1.8.9.zip'
sha1 '6a5a79a81bf0f1fccf5b56dac41be6174888983e'
def install
cd '..'
share.install 'google_appengine' => name
bin.mkpath
%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|
ln_s share+name+fn, bin
end
end
end
|