aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/toilet.rb
blob: 447097aad47e971f04b144e62a3da18cb7905fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end