homebrew-core/Formula/discount.rb

35 lines
985 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Discount < Formula
homepage 'http://www.pell.portland.or.us/~orc/Code/discount/'
2013-12-10 03:26:11 +00:00
url 'http://www.pell.portland.or.us/~orc/Code/discount/discount-2.1.7.tar.bz2'
sha1 '517bcf7409d8c02b3e57f51264b2e110f8a03120'
2015-02-13 06:55:04 +00:00
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
2012-02-22 04:48:36 +00:00
bin.mkpath
lib.mkpath
include.mkpath
2010-02-03 12:40:24 +00:00
system "make install.everything"
end
end