blob: e3b860836aeedb1a5cd79ea46263d50ae3e78355 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | 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
 |