diff options
| author | Peter Aronoff | 2011-02-21 07:42:46 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2011-02-21 10:39:01 -0800 |
| commit | cd785199361bbf0b8a0ed0fac15823f9364d058d (patch) | |
| tree | 8146022368c9f1d29af5bd6914dcac6c90432dbd /Library | |
| parent | 82bad042186740ad17b6670c5cd41e515aad77e4 (diff) | |
| download | homebrew-cd785199361bbf0b8a0ed0fac15823f9364d058d.tar.bz2 | |
Update discount to 2.0.7
2.0.7 completes support for definition lists in PHP mardown extra style.
There are also a few small cleanups and an extension of the footnotes.
Also:
Build discount with both types of definition list
Discount now supports two types of definition lists: its own and one
from PHP markdown extra. However, to enable them, we need to change
the configuration options.
See the homepage for details on the two types of definition lists:
http://www.pell.portland.or.us/~orc/Code/discount/#dl
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/discount.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/discount.rb b/Library/Formula/discount.rb index 4cb01dc9a..42822436b 100644 --- a/Library/Formula/discount.rb +++ b/Library/Formula/discount.rb @@ -1,13 +1,13 @@ require 'formula' class Discount <Formula - url 'https://github.com/Orc/discount/tarball/v2.0.5' + url 'https://github.com/Orc/discount/tarball/v2.0.7' homepage 'http://www.pell.portland.or.us/~orc/Code/markdown/' - md5 'd3e167363a78a35d85f05a9072074c93' + md5 'fc8e18464abad30be8900b184c34f812' def install system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{man}", - "--enable-dl-tag", "--enable-all-features" + "--with-dl=Both", "--enable-all-features" bin.mkdir lib.mkdir include.mkdir |
