Skip to content

Instantly share code, notes, and snippets.

@rwst
Created November 23, 2011 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwst/1389362 to your computer and use it in GitHub Desktop.
Save rwst/1389362 to your computer and use it in GitHub Desktop.
New formula: HTML tidy
require 'formula'
class Tidy < Formula
head 'cvs://:pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy:tidy'
homepage 'http://tidy.sourceforge.net'
version '2009' # date of last commit
def install
system "/bin/sh build/gnuauto/setup.sh"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment