homebrew-core/Formula/multimarkdown.rb
Alejandro Giacometti f8e8072674 multimarkdown 3.5
Closes Homebrew/homebrew#9675.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-01-19 22:29:11 -06:00

16 lines
489 B
Ruby

require 'formula'
class Multimarkdown < Formula
homepage 'http://fletcherpenney.net/multimarkdown/'
url 'https://github.com/fletcher/peg-multimarkdown/tarball/3.5'
md5 '3ba5725c96b1c12f5c2419be9753bf80'
head 'https://github.com/fletcher/peg-multimarkdown.git', :branch => 'development'
def install
ENV.append 'CFLAGS', '-include GLibFacade.h'
system "make"
bin.install 'multimarkdown'
bin.install Dir['Support/bin/*']
bin.install Dir['scripts/*']
end
end