homebrew-core/Formula/toilet.rb
David Höppner 1d7e277a45 New formula toilet
The TOIlet project attempts to create a free replacement for the FIGlet utility.
TOIlet stands for “The Other Implementation’s letters”, coined after FIGlet’s
“Frank, Ian and Glen’s letters”.
2010-05-22 12:45:26 +02:00

14 lines
374 B
Ruby

require 'formula'
class Toilet <Formula
url 'http://caca.zoy.org/raw-attachment/wiki/toilet/toilet-0.2.tar.gz'
homepage 'http://caca.zoy.org/wiki/toilet'
md5 '4dec7585a2a2d716a765d553cdc1ddaf'
depends_on 'libcaca'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end