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