pandoc: 1.12.3
This commit is contained in:
parent
e7acd3c098
commit
1ee6e1851b
1 changed files with 35 additions and 0 deletions
35
Formula/pandoc.rb
Normal file
35
Formula/pandoc.rb
Normal file
|
@ -0,0 +1,35 @@
|
|||
require "formula"
|
||||
require "language/haskell"
|
||||
|
||||
class Pandoc < Formula
|
||||
include Language::Haskell::Cabal
|
||||
|
||||
homepage "http://johnmacfarlane.net/pandoc/"
|
||||
url "https://pandoc.googlecode.com/files/pandoc-1.12.3.tar.gz"
|
||||
sha1 "f519b5fb8c88ff4374432477dc12f68bbe238510"
|
||||
|
||||
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"
|
||||
|
||||
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
|
Loading…
Reference in a new issue