blob: e10241943c040aab68b345d5e0540e3a128fdc62 (
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.2.tar.gz'
md5 '2104e3e9a3587826bf04887d5f7fd03e'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|