4f0e4abcc7
Closes Homebrew/homebrew#30379. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
48 lines
1.4 KiB
Ruby
48 lines
1.4 KiB
Ruby
require "formula"
|
|
require "language/haskell"
|
|
|
|
class Pandoc < Formula
|
|
include Language::Haskell::Cabal
|
|
|
|
homepage "http://johnmacfarlane.net/pandoc/"
|
|
url "http://hackage.haskell.org/package/pandoc-1.12.4.2/pandoc-1.12.4.2.tar.gz"
|
|
sha1 "29e035a2707ff5ce534de92cf75a17acf75dea19"
|
|
|
|
bottle do
|
|
sha1 "505dea8ad1b507a3d0fcfde6dc2c80d1238d4625" => :mavericks
|
|
sha1 "2c2b7bb640f24f5a282f27aaaf00a4ab02d6a572" => :mountain_lion
|
|
sha1 "8fa2925bfc5f0b526b4726cec1c1f47b2e64cc03" => :lion
|
|
end
|
|
|
|
resource "completion" do
|
|
url "https://github.com/dsanson/pandoc-completion.git", :branch => "master"
|
|
end
|
|
|
|
depends_on "ghc" => :build
|
|
depends_on "cabal-install" => :build
|
|
depends_on "gmp"
|
|
|
|
patch do
|
|
# The following patch has been committed upstream and is expected
|
|
# to be released with Pandoc 0.13.
|
|
url "https://github.com/jgm/pandoc/commit/fd11a5a5.diff"
|
|
sha1 "1676caa8440982af93e1ccdcfd444371dde81f34"
|
|
end
|
|
|
|
def install
|
|
resource("completion").stage do
|
|
bash_completion.install "pandoc-completion.bash"
|
|
end
|
|
cabal_sandbox do
|
|
cabal_install_tools "alex", "happy"
|
|
cabal_install "--only-dependencies", "--constraint=temporary==1.2.0.1"
|
|
cabal_install "--prefix=#{prefix}"
|
|
end
|
|
cabal_clean_lib
|
|
end
|
|
|
|
test do
|
|
system "pandoc", "-o", "output.html", prefix/"README"
|
|
assert (Pathname.pwd/"output.html").read.include? '<h1 id="synopsis">Synopsis</h1>'
|
|
end
|
|
end
|