homebrew-core/Formula/blahtexml.rb

21 lines
526 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Blahtexml < Formula
homepage 'http://gva.noekeon.org/blahtexml/'
2012-02-13 05:40:53 +00:00
url 'http://gva.noekeon.org/blahtexml/blahtexml-0.9-src.tar.gz'
sha1 '3961f5f388cbc2426aeffd9639a154d5e1690345'
2012-08-09 05:15:01 +00:00
option 'blahtex-only', "Build only blahtex, not blahtexml"
2012-08-09 15:51:54 +00:00
depends_on 'xerces-c' unless build.include? 'blahtex-only'
def install
system "make blahtex-mac"
bin.install 'blahtex'
2012-08-09 15:51:54 +00:00
unless build.include? 'blahtex-only'
system "make blahtexml-mac"
bin.install 'blahtexml'
end
end
end