homebrew-core/Formula/maven.rb
Odd Christer Brovig 3cc00c90aa maven: update download url
Closes Homebrew/homebrew#14862.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-12 18:29:31 -07:00

20 lines
594 B
Ruby

require 'formula'
class Maven < Formula
homepage 'http://maven.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi/maven/maven-3/3.0.4/binaries/apache-maven-3.0.4-bin.tar.gz'
sha1 '0de5dc162bafde3fcb0a6b009cfeea81a042523b'
def install
# Remove windows files
rm_f Dir["bin/*.bat"]
# Fix the permissions on the global settings file.
chmod 0644, Dir["conf/settings.xml"]
prefix.install %w{ NOTICE.txt LICENSE.txt README.txt }
# Install jars in libexec to avoid conflicts
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
end
end