13 lines
423 B
Ruby
13 lines
423 B
Ruby
require 'formula'
|
|
|
|
class AppEngineJavaSdk < Formula
|
|
homepage 'https://developers.google.com/appengine/docs/java/gettingstarted/introduction'
|
|
url 'https://commondatastorage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.3.zip'
|
|
sha1 '4f62f99c7be21637903b312ba4431c6222bfca16'
|
|
|
|
def install
|
|
rm Dir['bin/*.cmd']
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|