homebrew-core/Formula/app-engine-java-sdk.rb

14 lines
414 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.11.zip"
sha1 "3cb550e6a751584727ff123605549a5198b20b4f"
def install
rm Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end