homebrew-core/Formula/app-engine-java.rb
Nathan Toone 51fc23a44e google-appengine 1.9.27
Closes Homebrew/homebrew#44638.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-10-06 03:17:33 +01:00

12 lines
449 B
Ruby

class AppEngineJava < Formula
desc "Google App Engine for Java"
homepage "https://cloud.google.com/appengine/docs/java/gettingstarted/introduction"
url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.27.zip"
sha256 "069fc498bd292af01577f941f1f7d950e0bfe427f83099a1e381f7382500f0b6"
def install
rm Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end