adc6f4b0ab
Closes Homebrew/homebrew#32382. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
414 B
Ruby
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.11.zip"
|
|
sha1 "3cb550e6a751584727ff123605549a5198b20b4f"
|
|
|
|
def install
|
|
rm Dir["bin/*.cmd"]
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|