blob: 9127e9268a2339211150898f68a82e0cd924323c (
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.4.zip'
sha1 '62fb9e7a6ed1bd2525741eca175e101c500399a2'
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
bin.write_exec_script "#{libexec}/bin/*"
end
end
|