blob: 11be1c1ceb879911275510905f93e2813de27bf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Libkate < Formula
homepage 'http://code.google.com/p/libkate/'
url 'https://libkate.googlecode.com/files/libkate-0.4.1.tar.gz'
sha1 '87fd8baaddb7120fb4d20b0a0437e44ea8b6c9d8'
revision 1
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
|