2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-11 20:52:51 +00:00
|
|
|
|
|
|
|
class Maven <Formula
|
2010-11-26 17:28:32 +00:00
|
|
|
url 'http://www.apache.org/dist/maven/binaries/apache-maven-3.0.1-bin.tar.gz'
|
2010-03-07 06:27:19 +00:00
|
|
|
homepage 'http://maven.apache.org/'
|
2010-11-26 17:28:32 +00:00
|
|
|
md5 '98379efcef6b07bc44c27ec8382ad366'
|
2009-09-11 20:52:51 +00:00
|
|
|
|
|
|
|
def install
|
2010-09-01 14:51:57 +00:00
|
|
|
# Remove windows files
|
2010-03-07 06:27:19 +00:00
|
|
|
rm_f Dir["bin/*.bat"]
|
2010-09-01 14:51:57 +00:00
|
|
|
|
|
|
|
# Install jars in libexec to avoid conflicts
|
|
|
|
prefix.install %w{ NOTICE.txt LICENSE.txt README.txt }
|
|
|
|
libexec.install Dir['*']
|
|
|
|
|
|
|
|
# Symlink binaries
|
|
|
|
bin.mkpath
|
|
|
|
Dir["#{libexec}/bin/*"].each do |f|
|
|
|
|
ln_s f, bin+File.basename(f)
|
|
|
|
end
|
2009-09-11 20:52:51 +00:00
|
|
|
end
|
|
|
|
end
|