aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/unrar.rb
blob: 5f75f2d32cf21b3b8256e2c9ed755ebe15653665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Unrar < Formula
  homepage 'http://www.rarlab.com'
  url 'http://www.rarlab.com/rar/unrarsrc-5.0.11.tar.gz'
  sha1 'dc89913e3022d14740f50607c7bf123d23d0f96d'

  def install
    system "make"
    bin.install 'unrar'
  end
end