6c3886fb9b
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
383 B
Ruby
13 lines
383 B
Ruby
require 'formula'
|
|
|
|
class AppEngineJavaSdk < Formula
|
|
homepage 'https://developers.google.com/appengine/docs/java/overview'
|
|
url 'http://googleappengine.googlecode.com/files/appengine-java-sdk-1.8.9.zip'
|
|
sha1 '9c73b9b200723cf288b027d22c89ff231229d822'
|
|
|
|
def install
|
|
rm Dir['bin/*.cmd']
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|