aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rtf2latex2e.rb
blob: 35bc8ae32b3b2420b6d6c4941e541026e5127c4a (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
27
28
require 'formula'

class Rtf2latex2e < Formula
  homepage 'http://rtf2latex2e.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/rtf2latex2e/rtf2latex2e-unix/2-2/rtf2latex2e-2-2-1.tar.gz'
  version '2.2.1'
  sha1 '31be29e93c7e28ae87197fd3d45dc70662f54528'

  def install
    system "make", "install", "prefix=#{prefix}", "CC=#{ENV.cc}"
  end

  def caveats; <<-EOS.undent
    Configuration files have been installed in:
        #{share}/rtf2latex2e
    EOS
  end

  test do
    (testpath/'test.rtf').write <<-'EOF'.undent
    {\rtf1\ansi
    {\b hello} world
    }
    EOF
    system "#{bin}/rtf2latex2e", "-n", "test.rtf"
    system %q[cat test.tex | grep '\textbf{hello} world']
  end
end