blob: 1d1d19ae9adf72b41e0f257cb52b32ffe37c835e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require 'formula'
class Html2text < Formula
homepage 'http://www.mbayer.de/html2text/'
url 'http://www.mbayer.de/html2text/downloads/html2text-1.3.2a.tar.gz'
sha1 '91d46e3218d05b0783bebee96a14f0df0eb9773e'
# Patch provided by author. See:
# http://www.mbayer.de/html2text/faq.shtml#sect6
def patches
"http://www.mbayer.de/html2text/downloads/patch-utf8-html2text-1.3.2a.diff"
end
def install
inreplace 'configure',
'for i in "CC" "g++" "cc" "$CC"; do',
'for i in "g++"; do'
system "./configure"
system "make all"
bin.install "html2text"
man1.install "html2text.1.gz"
man5.install "html2textrc.5.gz"
end
end
|