2009-11-12 21:14:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Par < Formula
|
|
|
|
url 'http://www.nicemice.net/par/Par152.tar.gz'
|
|
|
|
homepage 'http://www.nicemice.net/par/'
|
|
|
|
md5 '4ccacd824171ba2c2f14fb8aba78b9bf'
|
|
|
|
|
2011-09-10 19:53:32 +00:00
|
|
|
def patches
|
|
|
|
# A patch by Jérôme Pouiller that adds support for multibyte
|
|
|
|
# charsets (like UTF-8), plus Debian packaging.
|
|
|
|
"http://www.nicemice.net/par/par_1.52-i18n.3.diff.gz"
|
|
|
|
end
|
|
|
|
|
2009-11-12 21:14:59 +00:00
|
|
|
def install
|
|
|
|
system "make -f protoMakefile"
|
2011-04-30 11:06:49 +00:00
|
|
|
bin.install "par"
|
|
|
|
man1.install gzip("par.1")
|
2009-11-12 21:14:59 +00:00
|
|
|
end
|
|
|
|
end
|