homebrew-core/Formula/app-engine-java-sdk.rb
Martin Probst b8fcb2a171 Google App Engine SDKs 1.9.4
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>
2014-05-04 07:44:11 -07:00

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