blob: 3243edec911bf935be77bc8193ded8c4d963e969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | 
# encoding: UTF-8
require 'formula'
class Par < Formula
  homepage 'http://www.nicemice.net/par/'
  url 'http://www.nicemice.net/par/Par152.tar.gz'
  version '1.52'
  sha1 '4b83d2ec593bb45ee46d4b7c2bfc590e1f4a41a8'
  # A patch by Jérôme Pouiller that adds support for multibyte
  # charsets (like UTF-8), plus Debian packaging.
  patch do
    url "http://sysmic.org/dl/par/par_1.52-i18n.4.patch"
    sha1 "9f774372c7eedc6970aa7e4ff40692428cbd84ee"
  end
  def install
    system "make -f protoMakefile"
    bin.install "par"
    man1.install gzip("par.1")
  end
end
  |