aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/timbl.rb
blob: 72fb5e7ab3a3bde8219bb468d06837b2801e16b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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