2012-04-14 16:48:51 +00:00
|
|
|
class Crash < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Kernel debugging shell for Java that allows gdb-like syntax"
|
2014-06-15 21:48:24 +00:00
|
|
|
homepage "http://www.crashub.org/"
|
2015-10-17 08:30:14 +00:00
|
|
|
url "https://search.maven.org/remotecontent?filepath=org/crashub/crash.distrib/1.3.1/crash.distrib-1.3.1.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "d79f1cda660c0086c353b7a11bccf98c4c6c4f2026d80916dd896fd914b177e4"
|
2013-12-29 18:31:21 +00:00
|
|
|
|
2015-10-23 10:46:33 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2014-06-15 21:48:24 +00:00
|
|
|
resource "docs" do
|
2015-11-11 21:55:51 +00:00
|
|
|
url "https://search.maven.org/remotecontent?filepath=org/crashub/crash.distrib/1.3.1/crash.distrib-1.3.1-docs.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "c594c005452fa02a54c60b47c82883b7a12e2293c00d1da24a9203b8d5898413"
|
2013-12-29 18:31:21 +00:00
|
|
|
end
|
2012-04-14 16:48:51 +00:00
|
|
|
|
|
|
|
def install
|
2014-06-15 21:48:24 +00:00
|
|
|
doc.install resource("docs")
|
|
|
|
libexec.install Dir["crash/*"]
|
2012-04-14 16:48:51 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/crash.sh"
|
|
|
|
end
|
|
|
|
end
|