homebrew-core/Formula/discount.rb
Peter Aronoff 5b113f0af0 Update discount to 2.0.5
Another small update. For details, see the home page:

http://www.pell.portland.or.us/~orc/Code/discount/

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-27 10:26:05 -08:00

16 lines
453 B
Ruby

require 'formula'
class Discount <Formula
url 'https://github.com/Orc/discount/tarball/v2.0.5'
homepage 'http://www.pell.portland.or.us/~orc/Code/markdown/'
md5 'd3e167363a78a35d85f05a9072074c93'
def install
system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{man}",
"--enable-dl-tag", "--enable-all-features"
bin.mkdir
lib.mkdir
include.mkdir
system "make install.everything"
end
end