Created
September 26, 2012 19:41
-
-
Save zeekay/3790109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class TidyHtml5 < Formula | |
head 'git://github.com/w3c/tidy-html5.git' | |
homepage 'http://w3c.github.com/tidy-html5/' | |
def install | |
system "make", | |
"-Cbuild/gmake", | |
"-j1", # make fails with this Makefile when jobs > 1 | |
"runinst_prefix=#{prefix}", | |
"devinst_prefix=#{prefix}", | |
"maninst=#{prefix}/share/man", | |
"install" | |
end | |
def test | |
system "#{bin}/tidy", "-v" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment