New Formula: timbl

TiMBL (Tilburg Memory-Based Learner) is a machine learning program implementing
a family of Memory-Based Learning techniques. TiMBL stores a representation of
the training set explicitly in memory (hence `Memory Based'), and classifies new
cases by extrapolating from the most similar stored cases.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Bjørn Arild Mæland 2010-09-22 09:27:45 +02:00 committed by Adam Vandenberg
parent e251674b9e
commit 823873f470
1 changed files with 15 additions and 0 deletions

15
Formula/timbl.rb Normal file
View File

@ -0,0 +1,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'
depends_on 'libxml2'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end