diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/blahtexml.rb | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Library/Formula/blahtexml.rb b/Library/Formula/blahtexml.rb index 8623977a0..5604568d5 100644 --- a/Library/Formula/blahtexml.rb +++ b/Library/Formula/blahtexml.rb @@ -5,10 +5,19 @@ class Blahtexml < Formula url 'http://gva.noekeon.org/blahtexml/blahtexml-0.9-src.tar.gz' md5 'ed790599223c2f8f6d205be8988882de' - depends_on 'xerces-c' + 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 blahtexml-mac" - bin.install 'blahtex', 'blahtexml' + system "make blahtex-mac" + bin.install 'blahtex' + unless ARGV.include? '--blahtex-only' + system "make blahtexml-mac" + bin.install 'blahtexml' + end end end |
