aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/timbl.rb
blob: 78a241aab8505cb6c24cb1a4929a7e0f0492a8d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Timbl < Formula
  url 'http://ilk.uvt.nl/downloads/pub/software/timbl-6.3.0.tar.gz'
  homepage 'http://ilk.uvt.nl/timbl/'
  md5 '039febcd556cdd53da874e9d365224ca'

  depends_on 'pkg-config' => :build
  depends_on 'libxml2'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end