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