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