aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libkate.rb
blob: eeebd41b9a9fc721407b2a3e68678d400857da8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Libkate < Formula
  homepage 'http://code.google.com/p/libkate/'
  url 'http://libkate.googlecode.com/files/libkate-0.4.1.tar.gz'
  sha1 '87fd8baaddb7120fb4d20b0a0437e44ea8b6c9d8'

  depends_on :libpng
  depends_on 'libogg' => :recommended

  fails_with :gcc do
    build 5666
    cause "Segfault during compilation"
  end

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end