Maven Shell 1.0.1

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jon Buffington 2011-02-27 15:52:00 -05:00 committed by Adam Vandenberg
parent efb9b10b1f
commit 2f1e5b25a7
1 changed files with 20 additions and 0 deletions

20
Formula/maven-shell.rb Normal file
View File

@ -0,0 +1,20 @@
require 'formula'
class MavenShell <Formula
url 'http://repo1.maven.org/maven2/org/sonatype/maven/shell/dist/mvnsh-assembly/1.0.1/mvnsh-assembly-1.0.1-bin.tar.gz'
homepage 'http://shell.sonatype.org/'
md5 '5b0f47c8838aa7525f454f2bca9dbed9'
def install
# Remove windows files.
rm_f Dir["bin/*.bat"]
# Install jars in libexec to avoid conflicts.
prefix.install %w{ NOTICE.txt LICENSE.txt README.txt }
libexec.install Dir['*']
# Symlink the boot script.
bin.mkpath
ln_s "#{libexec}/bin/mvnsh", bin+"mvnsh"
end
end