aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/blahtexml.rb
blob: 88f2a2a7030e99be1c2232f0cb25b1c697c7fa81 (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.9-src.tar.gz'
  homepage 'http://gva.noekeon.org/blahtexml/'
  md5 'ed790599223c2f8f6d205be8988882de'

  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