blob: 5604568d51ee412c9b765237c4d79d54b076cbc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  | 
require 'formula'
class Blahtexml < Formula
  homepage 'http://gva.noekeon.org/blahtexml/'
  url 'http://gva.noekeon.org/blahtexml/blahtexml-0.9-src.tar.gz'
  md5 'ed790599223c2f8f6d205be8988882de'
  depends_on 'xerces-c' unless ARGV.include? '--blahtex-only'
  def options
    [['--blahtex-only', "Build only blahtex, not blahtexml"]]
  end
  def install
    system "make blahtex-mac"
    bin.install 'blahtex'
    unless ARGV.include? '--blahtex-only'
      system "make blahtexml-mac"
      bin.install 'blahtexml'
    end
  end
end
  |