homebrew-core/Formula/timbl.rb
Bjarte Johansen 4318543b64 timbl 6.4.5
Update timbl to version 6.4.5

Closes Homebrew/homebrew#32184.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-10-11 16:46:35 -05:00

16 lines
367 B
Ruby

require 'formula'
class Timbl < Formula
homepage 'http://ilk.uvt.nl/timbl/'
url 'http://software.ticc.uvt.nl/timbl-6.4.5.tar.gz'
sha1 'de8e241dedb1fd413ba885c81f8ffa63a575f419'
depends_on 'pkg-config' => :build
depends_on 'libxml2'
depends_on 'ticcutils'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end