Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Fix shocco's requirement for a markdown command #16740

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 25 additions & 1 deletion Library/Formula/shocco.rb
Expand Up @@ -8,12 +8,36 @@ class Pygments < Formula
sha1 '4fbd937fd5cebc79fa4b26d4cce0868c4eec5ec5'
end

# shocco requires a command `markdown`. That command, however, can be
# satisfied by more than one Homebrew formula. Rather than force one or the
# other, check for both and let the user pick if neither is found.
class MarkdownProvider < Requirement
def message; <<-EOS.undent
shocco requires a `markdown` command.

You can satisfy this requirement with either of two formulae:
brew install markdown
brew install discount

Please install one and try again.
EOS
end

def satisfied?
which 'markdown'
end

def fatal?
true
end
end

class Shocco < Formula
homepage 'http://rtomayko.github.com/shocco/'
url 'https://github.com/rtomayko/shocco/tarball/a1ee000613946335f54a8f236ee9fe6f7f22bcb8'
sha1 '8feb66dad3c957fabdfa368e710dfb2a078a732f'

depends_on 'markdown'
depends_on MarkdownProvider.new

def install
Pygments.new.brew { libexec.install 'pygmentize','pygments' }
Expand Down