62de71bdf9
upgrade app-engine-java-sdk to 1.9.23 Closes Homebrew/homebrew#41406. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
14 lines
471 B
Ruby
14 lines
471 B
Ruby
require "formula"
|
|
|
|
class AppEngineJavaSdk < 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.23.zip"
|
|
sha256 "05e667036e9ef4f999b829fc08f8e5395b33a5a3c30afa9919213088db2b2e89"
|
|
|
|
def install
|
|
rm Dir["bin/*.cmd"]
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|