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/'
|
2013-10-07 01:53:45 +00:00
|
|
|
url 'http://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.tar.gz'
|
|
|
|
sha1 '630eea2107b0742acb315b214009ba08602dda5f'
|
2013-05-05 18:36:18 +00:00
|
|
|
|
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.
|
2013-11-10 18:10:41 +00:00
|
|
|
chmod 0644, 'conf/settings.xml'
|
2011-01-13 11:01:25 +00:00
|
|
|
|
2012-11-11 19:20:09 +00:00
|
|
|
prefix.install_metafiles
|
2010-09-01 14:51:57 +00:00
|
|
|
libexec.install Dir['*']
|
2013-11-10 18:10:41 +00:00
|
|
|
|
|
|
|
# Leave conf file in libexec. The mvn symlink will be resolved and the conf
|
|
|
|
# file will be found relative to it
|
|
|
|
bin.install_symlink Dir["#{libexec}/bin/*"] - ["#{libexec}/bin/m2.conf"]
|
2009-09-11 20:52:51 +00:00
|
|
|
end
|
|
|
|
end
|