61ee894e5a
CRaSH, the shell to extend the Java Platform Closes Homebrew/homebrew#11653. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
324 B
Ruby
13 lines
324 B
Ruby
require 'formula'
|
|
|
|
class Crash < Formula
|
|
homepage 'http://vietj.github.com/crash/'
|
|
url 'http://crsh.googlecode.com/files/crsh-1.0.0.tar.gz'
|
|
md5 '568e43affde5feca3e4c8b20a53fad95'
|
|
|
|
def install
|
|
libexec.install Dir['crash/*']
|
|
doc.install Dir['doc/*']
|
|
bin.install_symlink "#{libexec}/bin/crash.sh"
|
|
end
|
|
end
|