blob: a0da5a6713a599d32066acedfb067d5ee28f73b5 (
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
  | 
require 'formula'
class TidypManual < Formula
  url "https://github.com/petdance/tidyp/raw/6a6c85bc9cb089e343337377f76127d01dd39a1c/htmldoc/tidyp1.xsl"
  sha1 'db6b733bb8e341eb806bc7487faee69eb429a68d'
end
class Tidyp < Formula
  url 'https://github.com/downloads/petdance/tidyp/tidyp-1.04.tar.gz'
  homepage 'http://tidyp.com/'
  sha1 '5d9050512259c3a67a2f48469555932e3a7b8bd0'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
    # Use the newly brewed Tidyp to generate the manual
    TidypManual.new.brew do
      system "#{bin}/tidyp -xml-help > tidyp1.xml"
      system "#{bin}/tidyp -xml-config > tidyp-config.xml"
      system "/usr/bin/xsltproc tidyp1.xsl tidyp1.xml |/usr/bin/gzip >tidyp.1.gz"
      man1.install 'tidyp.1.gz'
    end
  end
end
  |