blob: 266ff5b2ea7494f9ee6927e388c1a0447ea9dbc2 (
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.5.zip'
sha1 'b662c48b932c7c10fa634c25e64adc62f7c66ddf'
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end
|