blob: 6e305761057011519f9cd6e69e36edec8000af81 (
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'
  sha1 'd43c9712819f112e5b2077eba16926c506cf6387'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |