homebrew-core/Formula/discount.rb
2015-02-13 11:10:10 +00:00

34 lines
985 B
Ruby

require 'formula'
class Discount < Formula
homepage 'http://www.pell.portland.or.us/~orc/Code/discount/'
url 'http://www.pell.portland.or.us/~orc/Code/discount/discount-2.1.7.tar.bz2'
sha1 '517bcf7409d8c02b3e57f51264b2e110f8a03120'
bottle do
cellar :any
sha1 "5671a9db7f30c9c5ace23a9eb85385a5f3c9aaee" => :yosemite
sha1 "e867d81f742a6b27308c352888b5d3123ef2703b" => :mavericks
sha1 "7453dfde1ff9b0157032ac123ae389b75867ddc8" => :mountain_lion
end
option "with-fenced-code", "Enable Pandoc-style fenced code blocks."
conflicts_with 'markdown',
:because => 'both discount and markdown ship a `markdown` executable.'
def install
args = %W[
--prefix=#{prefix}
--mandir=#{man}
--with-dl=Both
--enable-all-features
]
args << "--with-fenced-code" if build.with? "fenced-code"
system "./configure.sh", *args
bin.mkpath
lib.mkpath
include.mkpath
system "make install.everything"
end
end