blob: aa8e2e44a7115843ca123641a6b654f562b3b7a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class Blahtexml < Formula
  url 'http://gva.noekeon.org/blahtexml/blahtexml-0.8-src.tar.gz'
  homepage 'http://gva.noekeon.org/blahtexml/'
  md5 '2858418d85ca2afdf46ce67eb4d50de8'
  depends_on 'xerces-c'
  def install
    system "/usr/bin/make blahtex-mac"
    bin.install('blahtex')
    system "/usr/bin/make blahtexml-mac"
    bin.install('blahtexml')
  end
end
  |