1d7e277a45
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”.
14 lines
374 B
Ruby
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
|