aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBjørn Arild Mæland2010-09-22 09:27:45 +0200
committerAdam Vandenberg2010-09-22 07:23:12 -0700
commit98c73b43d98273f6afa704e2641c44f78c2a9a4d (patch)
tree09e1d62900b09824ee5d77a7647e463336cc7f04 /Library/Formula
parent194b0fa6b1ed59410575e13bb91d1ae6827caa4b (diff)
downloadhomebrew-98c73b43d98273f6afa704e2641c44f78c2a9a4d.tar.bz2
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>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/timbl.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/timbl.rb b/Library/Formula/timbl.rb
new file mode 100644
index 000000000..7f74f87cc
--- /dev/null
+++ b/Library/Formula/timbl.rb
@@ -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