blob: c8aab6387499f1ca4e3e940f37d487a435d52c12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|