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