homebrew-core/Formula/app-engine-python.rb
Chayoung You a33b835f8c app-engine-python 1.9.34
Closes Homebrew/homebrew#49985.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-03-11 13:37:22 +08:00

37 lines
957 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.34.zip"
sha256 "492f837f295c33db14bb26f51fdabae94727463a40c764e31301352683f0235d"
bottle :unneeded
conflicts_with "app-engine-go-32",
:because => "both install the same binaries"
conflicts_with "app-engine-go-64",
:because => "both install the same binaries"
def install
pkgshare.install Dir["*"]
%w[
_python_runtime.py
_php_runtime.py
api_server.py
appcfg.py
backends_conversion.py
bulkload_client.py
bulkloader.py
dev_appserver.py
download_appstats.py
endpointscfg.py
gen_protorpc.py
google_sql.py
php_cli.py
remote_api_shell.py
run_tests.py
wrapper_util.py
].each do |fn|
bin.install_symlink share/name/fn
end
end
end