2011-03-10 05:11:03 +00:00
|
|
|
class AppEngineJavaSdk < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Google App Engine for Java"
|
2015-06-29 14:58:02 +00:00
|
|
|
homepage "https://cloud.google.com/appengine/docs/java/gettingstarted/introduction"
|
2015-07-06 08:58:28 +00:00
|
|
|
url "https://storage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.23.zip"
|
|
|
|
sha256 "05e667036e9ef4f999b829fc08f8e5395b33a5a3c30afa9919213088db2b2e89"
|
2010-05-05 18:48:56 +00:00
|
|
|
|
2009-09-18 21:43:20 +00:00
|
|
|
def install
|
2014-06-10 21:53:50 +00:00
|
|
|
rm Dir["bin/*.cmd"]
|
|
|
|
libexec.install Dir["*"]
|
2013-11-30 06:31:26 +00:00
|
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
2009-09-18 21:43:20 +00:00
|
|
|
end
|
|
|
|
end
|