2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-18 21:43:20 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class AppEngineJavaSdk < Formula
|
2014-02-28 15:36:24 +00:00
|
|
|
homepage 'https://developers.google.com/appengine/docs/java/gettingstarted/introduction'
|
2014-05-04 13:25:09 +00:00
|
|
|
url 'https://commondatastorage.googleapis.com/appengine-sdks/featured/appengine-java-sdk-1.9.4.zip'
|
|
|
|
sha1 'c8649a3c834d3aade93053ad52209d36780c292d'
|
2010-05-05 18:48:56 +00:00
|
|
|
|
2009-09-18 21:43:20 +00:00
|
|
|
def install
|
2010-05-05 18:48:56 +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
|