homebrew-core/Formula/app-engine-java-sdk.rb

14 lines
414 B
Ruby
Raw Normal View History

2014-06-10 21:53:50 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class AppEngineJavaSdk < Formula
2014-06-10 21:53:50 +00:00
homepage "https://developers.google.com/appengine/docs/java/gettingstarted/introduction"
url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.12.zip"
sha1 "dade58a214fa55d5e0f4cee4c93f6bae5d7e048b"
def install
2014-06-10 21:53:50 +00:00
rm Dir["bin/*.cmd"]
libexec.install Dir["*"]
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end