blob: 03eb2608311ccdaf03dff5e57f7aa04c417da1e3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | class Hoedown < Formula
  homepage "https://github.com/hoedown/hoedown"
  url "https://github.com/hoedown/hoedown/archive/3.0.1.tar.gz"
  sha1 "4a2e8bd7c22f13644b234e17c2541c8ffc935c34"
  def install
    system "make", "hoedown"
    bin.install "hoedown"
    prefix.install "test"
  end
  test do
    system "perl", "#{prefix}/test/MarkdownTest_1.0.3/MarkdownTest.pl",
                   "--script=#{bin}/hoedown",
                   "--testdir=#{prefix}/test/MarkdownTest_1.0.3/Tests",
                   "--tidy"
  end
end
 |