aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/crash.rb
blob: 78b96650dfd627e8ec782092e58125eaec56aea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'formula'

class Crash < Formula
  homepage 'http://www.crashub.org/'
  url 'https://crsh.googlecode.com/files/crash-1.2.8.tar.gz'
  sha1 '12290cd227b20eae07674f8cf0d43ee58732e34b'

  devel do
    url 'https://crsh.googlecode.com/files/crash-1.3.0-beta14.tar.gz'
    sha1 '80ba0af7c951998094761160d1b034c712d9eccc'

    resource 'docs' do
      url 'https://crsh.googlecode.com/files/crash-1.3.0-beta14-docs.tar.gz'
      version '1.3.0-beta14'
      sha1 '7876c9a176361ae13de5ae505f1e3e5df642416b'
    end
  end

  resource 'docs' do
    url 'https://crsh.googlecode.com/files/crash-1.2.8-docs.tar.gz'
    sha1 'ea385cf28c9c8fc0512d8809bf511c37a5be8e1a'
  end

  def install
    doc.install resource('docs')
    libexec.install Dir['crash/*']
    bin.install_symlink "#{libexec}/bin/crash.sh"
  end
end