aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/html2text.rb
blob: 3dea9664f6e3b199cd79480ecccdde7a7e9d5210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Html2text <Formula
  url 'http://www.mbayer.de/html2text/downloads/html2text-1.3.2a.tar.gz'
  homepage 'http://www.mbayer.de/html2text/'
  md5 '6097fe07b948e142315749e6620c9cfc'

  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