2011-02-27 20:52:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class MavenShell < Formula
|
2011-02-27 20:52:00 +00:00
|
|
|
homepage 'http://shell.sonatype.org/'
|
2013-07-29 10:23:41 +00:00
|
|
|
url 'http://repo1.maven.org/maven2/org/sonatype/maven/shell/dist/mvnsh-assembly/1.1.0/mvnsh-assembly-1.1.0-bin.tar.gz'
|
|
|
|
sha1 '0aa91e810be695952f56e7369c00d9e4bf1a3ead'
|
2011-02-27 20:52:00 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# Remove windows files.
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
|
2012-11-11 19:20:09 +00:00
|
|
|
prefix.install_metafiles
|
2011-02-27 20:52:00 +00:00
|
|
|
libexec.install Dir['*']
|
2012-11-11 19:20:09 +00:00
|
|
|
bin.install_symlink libexec/"bin/mvnsh"
|
2011-02-27 20:52:00 +00:00
|
|
|
end
|
|
|
|
end
|