blob: 9ec4b5fea0660fde858c4cb3bda04fd49873c6fa (
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.18.zip"
sha1 "7f554498a7320192186fc8c3e4ad3f1aaab4d6dd"
def install
rm Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end
|