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