homebrew-core/Formula/markdown.rb
pjaspers 65fe674a7a Added Markdown to the Formula
Provides bin/markdown. Now tools like Emacs will be able to access it.
2010-03-09 12:37:41 +00:00

11 lines
283 B
Ruby

require 'formula'
class Markdown <Formula
url 'http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip'
homepage 'http://daringfireball.net/projects/markdown/'
md5 'f17b3c2b2830c6fd2fe0098226e59a2f'
def install
bin.install 'Markdown.pl' => 'markdown'
end
end