forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaven30.rb
More file actions
25 lines (20 loc) · 657 Bytes
/
maven30.rb
File metadata and controls
25 lines (20 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'formula'
class Maven30 < Formula
homepage 'http://maven.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz'
sha1 'aecc0d3d67732939c0056d4a0d8510483ee1167e'
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_metafiles
libexec.install Dir['*']
bin.install_symlink Dir["#{libexec}/bin/*"]
end
def cavets; <<-EOS.undent
WARNING: This older version will conflict with Maven if installed at the
same time.
EOS
end
end