homebrew-core/Formula/multimarkdown.rb
Christian Tietze 98075a3c0d multimarkdown 3.1b1
Permitting a beta version to allow for compatibility with other tools
that rely on MMD.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-04 14:57:25 -05:00

19 lines
522 B
Ruby

require 'formula'
class Multimarkdown < Formula
homepage 'http://fletcherpenney.net/multimarkdown/'
url 'https://github.com/fletcher/peg-multimarkdown/tarball/3.1b1'
md5 'fc09047d271828f068473114becd39d6'
head 'https://github.com/fletcher/peg-multimarkdown.git', :branch => 'development'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
def install
system "make"
bin.install 'multimarkdown'
bin.install Dir['Support/bin/*']
bin.install Dir['scripts/*']
end
end