blob: 34dd5c92bab61cedf380fd7ff9236311be20efe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Unrar < Formula
  url 'http://www.rarlab.com/rar/unrarsrc-4.2.1.tar.gz'
  sha1 '10f48ec272f413c983032b2e0cbe4e94781c7b3b'
  homepage 'http://www.rarlab.com'
  def install
    system "make --makefile makefile.unix"
    bin.install 'unrar'
    mv 'license.txt', 'COPYING'
    mv 'readme.txt', 'README'
  end
end
  |