aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/markdown.rb
blob: d81ab9d102c3f792c99d112390e5d09f1195568f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Markdown < Formula
  homepage 'http://daringfireball.net/projects/markdown/'
  url 'http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip'
  sha1 '7e6d1d9224f16fec5631bf6bc5147f1e64715a4b'

  conflicts_with 'discount',
    :because => 'both markdown and discount ship a `markdown` executable.'

  def install
    bin.install 'Markdown.pl' => 'markdown'
  end
end