54d6b7165a
Closes Homebrew/homebrew#42941. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
30 lines
861 B
Ruby
30 lines
861 B
Ruby
class AppEnginePython < Formula
|
|
desc "Google App Engine"
|
|
homepage "https://cloud.google.com/appengine/docs"
|
|
url "https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.23.zip"
|
|
sha256 "6d4e442d4814dea6a49b39fde8b0a82e228f962c8dcac883fe9ae8fffa6d1c2a"
|
|
|
|
conflicts_with "go-app-engine-32", :because => "multiple conflicting files"
|
|
conflicts_with "go-app-engine-64", :because => "multiple conflicting files"
|
|
|
|
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
|