multimarkdown 3.0

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Dipen Lad 2011-05-25 00:03:14 +01:00 committed by Adam Vandenberg
parent 6e81cec742
commit 33013a1e99
1 changed files with 17 additions and 0 deletions

17
Formula/multimarkdown.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Multimarkdown < Formula
homepage 'http://fletcherpenney.net/multimarkdown/'
url 'https://github.com/fletcher/peg-multimarkdown/tarball/3.0'
md5 '607387dc346a71203f100564874294fe'
head 'https://github.com/fletcher/peg-multimarkdown.git'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'glib'
def install
system "make"
bin.install 'multimarkdown'
end
end