95d9785ff5
* Removing silly concatenation * Removing .bat files before installing * Removing silly quoting * Fixing download URLs * Removing explicit versions
12 lines
291 B
Ruby
12 lines
291 B
Ruby
require 'formula'
|
|
|
|
class Maven <Formula
|
|
url 'http://www.apache.org/dist/maven/binaries/apache-maven-2.2.1-bin.tar.gz'
|
|
homepage 'http://maven.apache.org/'
|
|
md5 '3f829ed854cbacdaca8f809e4954c916'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
prefix.install %w[bin conf boot lib]
|
|
end
|
|
end
|