9e41c899f2
Closes Homebrew/homebrew#20050.
13 lines
328 B
Ruby
13 lines
328 B
Ruby
require 'formula'
|
|
|
|
class Crash < Formula
|
|
homepage 'http://www.crashub.org/'
|
|
url 'https://crsh.googlecode.com/files/crash-1.2.5.tar.gz'
|
|
sha1 '8567aa4f16e47aca7041f0e48ebcbc88a038c308'
|
|
|
|
def install
|
|
libexec.install Dir['crash/*']
|
|
doc.install Dir['doc/*']
|
|
bin.install_symlink "#{libexec}/bin/crash.sh"
|
|
end
|
|
end
|