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
|
2012-10-15 15:56:47 +00:00
|
|
|
homepage 'https://developers.google.com/appengine/docs/java/overview'
|
2012-12-13 19:43:18 +00:00
|
|
|
url 'http://googleappengine.googlecode.com/files/appengine-java-sdk-1.7.4.zip'
|
|
|
|
sha1 '62fb9e7a6ed1bd2525741eca175e101c500399a2'
|
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['*']
|
2012-08-07 18:20:52 +00:00
|
|
|
bin.write_exec_script "#{libexec}/bin/*"
|
2009-09-18 21:43:20 +00:00
|
|
|
end
|
|
|
|
end
|