15e1147db9
Closes Homebrew/homebrew#30903. Signed-off-by: Brett Koonce <koonce@gmail.com>
13 lines
413 B
Ruby
13 lines
413 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.7.zip"
|
|
sha1 "8210a9f0db2254d55aa68431bbbc7570cbaee4a2"
|
|
|
|
def install
|
|
rm Dir["bin/*.cmd"]
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|