b8fcb2a171
Upgrades App Engine SDKs to 1.9.4 across Java, Python, Go 32/64. SHAs verified from Google's download site at https://developers.google.com/appengine/downloads Closes Homebrew/homebrew#28943. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
423 B
Ruby
13 lines
423 B
Ruby
require 'formula'
|
|
|
|
class AppEngineJavaSdk < Formula
|
|
homepage 'https://developers.google.com/appengine/docs/java/gettingstarted/introduction'
|
|
url 'https://commondatastorage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.4.zip'
|
|
sha1 'c8649a3c834d3aade93053ad52209d36780c292d'
|
|
|
|
def install
|
|
rm Dir['bin/*.cmd']
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|