blob: 13630db28e7bb130477783bc98d387ada16552ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Kytea < Formula
homepage 'http://www.phontron.com/kytea/'
url 'http://www.phontron.com/kytea/download/kytea-0.4.5.tar.gz'
sha1 'af0228203f509f576f5a2dcf2c0cb44e2f36aa72'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|