2010-09-22 07:27:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Timbl < Formula
|
2010-09-22 07:27:45 +00:00
|
|
|
homepage 'http://ilk.uvt.nl/timbl/'
|
2012-03-10 23:07:02 +00:00
|
|
|
url 'http://ilk.uvt.nl/downloads/pub/software/timbl-6.4.2.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '7479ace6b7856205e2a3431c8df380fb1ec2a03f'
|
2010-09-22 07:27:45 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-09-22 07:27:45 +00:00
|
|
|
depends_on 'libxml2'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|