8000b2c044
Closes Homebrew/homebrew#35966. Signed-off-by: Tim D. Smith <git@tim-smith.us>
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.17.zip"
|
|
sha1 "ca0bbae7e6c24dfe90cc06be384d594840dd2251"
|
|
|
|
def install
|
|
rm Dir["bin/*.cmd"]
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|