homebrew-core/Formula/app-engine-java-sdk.rb
Lee Hanxue 5fbb90ca25 app-engine-java-sdk 1.9.19
Closes Homebrew/homebrew#38931.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-04-22 18:46:35 +08:00

13 lines
440 B
Ruby

require "formula"
class AppEngineJavaSdk < Formula
homepage "https://developers.google.com/appengine/docs/java/gettingstarted/introduction"
url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.19.zip"
sha256 "22a761ea50af1d1a0e1f698cc3fa91765391902a633ca886ea1a6426c3ae1ccb"
def install
rm Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end