70796e44a6
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
12 lines
296 B
Ruby
12 lines
296 B
Ruby
require 'brewkit'
|
|
|
|
class Maven <Formula
|
|
@url='http://apache.mirrors.timporter.net/maven/binaries/apache-maven-2.2.1-bin.tar.gz'
|
|
@version="2.2.1"
|
|
@homepage='http://maven.apache.org/'
|
|
@md5='3f829ed854cbacdaca8f809e4954c916'
|
|
|
|
def install
|
|
prefix.install %w[bin conf boot lib]
|
|
end
|
|
end
|