diff options
| author | Lenz Gschwendtner | 2010-11-12 12:08:55 +1300 |
|---|---|---|
| committer | Adam Vandenberg | 2011-01-20 22:38:16 -0800 |
| commit | 7a74a10224f0eccebea57de836e51884ee0932c6 (patch) | |
| tree | 6f3f56ec8ce196b898e5d87b45bf108b84328c14 /Library/Formula | |
| parent | c4c7d6f0df9c290ffc35f454e43c20d96a493dd0 (diff) | |
| download | homebrew-7a74a10224f0eccebea57de836e51884ee0932c6.tar.bz2 | |
tidyp 1.04
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tidyp.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/tidyp.rb b/Library/Formula/tidyp.rb new file mode 100644 index 000000000..c8aab6387 --- /dev/null +++ b/Library/Formula/tidyp.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Tidyp <Formula + url 'http://github.com/downloads/petdance/tidyp/tidyp-1.04.tar.gz' + homepage 'http://tidyp.com/' + md5 '00a6b804f6625221391d010ca37178e1' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
