diff options
| author | Dipen Lad | 2011-05-25 00:03:14 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-06-16 05:38:56 -0700 |
| commit | e3edb15503041a399cabd1d1cc6bc1f85f3ca77e (patch) | |
| tree | 41df27f38290baf2b82bb14c83005800854dc1d2 /Library/Formula/multimarkdown.rb | |
| parent | 0dd6336e18bcbdbbac2f46ea9cf00ca0ad8dd7bc (diff) | |
| download | homebrew-e3edb15503041a399cabd1d1cc6bc1f85f3ca77e.tar.bz2 | |
multimarkdown 3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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 |
