aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/peg-markdown.rb
blob: 23e54cbfc425fb565d07532b3da7c3c53bb25ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class PegMarkdown < Formula
  homepage 'https://github.com/jgm/peg-markdown'
  url 'https://github.com/jgm/peg-markdown/tarball/0.4.14'
  sha1 '5afa123c513fc259b270a0865bf8382fe314f086'

  head 'https://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