aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/unrar.rb
blob: 0b9d475514f5b3b679f8933dc4db52c94dd5ccb9 (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.12.tar.gz'
  sha1 '03d61213ff810650fc06113ffe153712176af4dd'

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