homebrew-core/Formula/peg-markdown.rb
Isao Yagi c044467cd7 New Formula: peg-markdown
The markdown parser that existing formula "multimarkdown" is based on.
Presumably lighter-weight (fewer output formats) and fewer bugs.

Closes Homebrew/homebrew#7631.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-09-18 18:17:39 -07:00

16 lines
388 B
Ruby

require 'formula'
class PegMarkdown < Formula
homepage 'https://github.com/jgm/peg-markdown'
url 'https://github.com/jgm/peg-markdown/tarball/0.4.12'
md5 '9e8d3a4897d0e5be84011ec1d3dd961f'
head 'git://github.com/jgm/peg-markdown.git'
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
system 'make'
bin.install 'markdown' => 'peg-markdown'
end
end