diff options
Diffstat (limited to 'Library/Formula/multimarkdown.rb')
| -rw-r--r-- | Library/Formula/multimarkdown.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/multimarkdown.rb b/Library/Formula/multimarkdown.rb new file mode 100644 index 000000000..d5ce20fc3 --- /dev/null +++ b/Library/Formula/multimarkdown.rb @@ -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 |
