homebrew-core/Formula/app-engine-java-sdk.rb
2014-09-24 22:17:28 -07:00

13 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.12.zip"
sha1 "dade58a214fa55d5e0f4cee4c93f6bae5d7e048b"
def install
rm Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end