homebrew-core/Formula/markdown.rb
2012-12-27 20:26:00 -04:00

14 lines
398 B
Ruby

require 'formula'
class Markdown < Formula
url 'http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip'
homepage 'http://daringfireball.net/projects/markdown/'
sha1 '7e6d1d9224f16fec5631bf6bc5147f1e64715a4b'
conflicts_with 'discount',
:because => 'both markdown and discount ship a `markdown` executable.'
def install
bin.install 'Markdown.pl' => 'markdown'
end
end