homebrew-core/Formula/maven.rb
Luke Amdor 70796e44a6 Maven formula
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.
2009-09-18 13:37:13 +01:00

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