5aadc8edef
a hotfix was applied in-place to 1.8.1.1 Closes Homebrew/homebrew#20717. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
32 lines
713 B
Ruby
32 lines
713 B
Ruby
require 'formula'
|
|
|
|
class GoogleAppEngine < Formula
|
|
homepage 'https://developers.google.com/appengine/'
|
|
url 'http://googleappengine.googlecode.com/files/google_appengine_1.8.1.zip'
|
|
sha1 'bb674f9a7060d441fbf4f4e5b5174adc7f9f5235'
|
|
|
|
depends_on :python
|
|
|
|
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
|