diff options
| author | Adrian Rego | 2011-09-28 19:29:41 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-01-28 13:58:16 -0800 |
| commit | 351999b938423d02a8d04a12402ce631dedd55cd (patch) | |
| tree | 9652e64a2dffa5c8561a931bf9dcb60d9c4afe2d | |
| parent | c2932a46d6fbd5f1937e39ca2e2f35b96c13c112 (diff) | |
| download | homebrew-351999b938423d02a8d04a12402ce631dedd55cd.tar.bz2 | |
libsvm 3.11
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/libsvm.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libsvm.rb b/Library/Formula/libsvm.rb new file mode 100644 index 000000000..304bcae0e --- /dev/null +++ b/Library/Formula/libsvm.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Libsvm < Formula + url 'http://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-3.11.tar.gz' + homepage 'http://www.csie.ntu.edu.tw/~cjlin/libsvm/' + md5 '44d2a3a611280ecd0d66aafe0d52233e' + + def install + system "make" + bin.install ['svm-scale', 'svm-train', 'svm-predict'] + end +end |
