blob: 3cecc56d903d789c290ad08d87c463463631930b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|