blob: c5ab60e84f8d27b561661b5ed1bedbc26f888d52 (
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
29
  | 
require 'formula'
class Antiword < Formula
  url 'http://www.winfield.demon.nl/linux/antiword-0.37.tar.gz'
  homepage 'http://www.winfield.demon.nl/'
  md5 'f868e2a269edcbc06bf77e89a55898d1'
  skip_clean 'share/antiword'
  def install
    inreplace "Makefile" do |s|
      s.change_make_var! "GLOBAL_INSTALL_DIR", bin
      s.change_make_var! "GLOBAL_RESOURCES_DIR", share+'antiword'
    end
    system 'make'
    bin.install 'antiword'
    man1.install 'Docs/antiword.1'
    (share+'antiword').mkpath
  end
  def caveats; <<-EOS.undent
    You can install mapping files globally to:
      #{HOMEBREW_PREFIX}/share/antiword
    or locally to:
      ~/.antiword
    EOS
  end
end
  |