blob: a1cf73c63d4491a36b26080a075cd4bd5551a7ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class AppEngineJavaSdk < Formula
homepage 'https://developers.google.com/appengine/docs/java/overview'
url 'http://googleappengine.googlecode.com/files/appengine-java-sdk-1.7.5.zip'
sha1 '2475c8a50cbe1289e60441f6f011626b9fdc06d0'
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
bin.write_exec_script "#{libexec}/bin/*"
end
end
|