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
|
2010-03-07 06:27:19 +00:00
|
|
|
homepage 'http://maven.apache.org/'
|
2012-02-12 22:44:51 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-maven-3.0.4-bin.tar.gz'
|
2012-01-20 21:52:27 +00:00
|
|
|
md5 'e513740978238cb9e4d482103751f6b7'
|
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
|
|
|
prefix.install %w{ NOTICE.txt LICENSE.txt README.txt }
|
2012-02-12 22:44:51 +00:00
|
|
|
# Install jars in libexec to avoid conflicts
|
2010-09-01 14:51:57 +00:00
|
|
|
libexec.install Dir['*']
|
2012-02-12 22:44:51 +00:00
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
2009-09-11 20:52:51 +00:00
|
|
|
end
|
|
|
|
end
|