2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-11 20:52:51 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Maven < Formula
|
2011-07-27 09:41:17 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=maven/binaries/apache-maven-3.0.3-bin.tar.gz'
|
2010-03-07 06:27:19 +00:00
|
|
|
homepage 'http://maven.apache.org/'
|
2011-03-05 10:58:12 +00:00
|
|
|
md5 '507828d328eb3735103c0492443ef0f0'
|
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
|
|
|
|
2011-01-13 11:01:25 +00:00
|
|
|
# Fix the permissions on the global settings file.
|
|
|
|
chmod 0644, Dir["conf/settings.xml"]
|
|
|
|
|
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
|
2011-03-05 10:58:12 +00:00
|
|
|
ln_s "#{libexec}/bin/mvn", bin+"mvn"
|
|
|
|
ln_s "#{libexec}/bin/mvnDebug", bin+"mvnDebug"
|
|
|
|
ln_s "#{libexec}/bin/mvnyjp", bin+"mvnyjp"
|
2009-09-11 20:52:51 +00:00
|
|
|
end
|
|
|
|
end
|