this repo has no description
1opam-version: "2.0"
2maintainer: "gu.oliver@yahoo.com"
3authors: [ "Oliver Gu <gu.oliver@yahoo.com>"
4 "Dominik Brugger <dominikbrugger@fastmail.fm>" ]
5homepage: "https://bitbucket.org/ogu/libsvm-ocaml"
6build: [
7 ["ocaml" "setup.ml" "-configure"]
8 ["ocaml" "setup.ml" "-build"]
9]
10remove: [["ocamlfind" "remove" "libsvm"]]
11depends: [
12 "ocaml"
13 "ocamlfind"
14 "core" {>= "108.08.00"}
15 "lacaml" {< "8.0"}
16 "gsl"
17 "archimedes"
18 "ocamlbuild" {build}
19]
20conflicts: [
21 "sexplib" {>= "113.24.00"}
22]
23install: ["ocaml" "setup.ml" "-install"]
24depexts: [
25 ["libsvm-dev"] {os-family = "debian"}
26]
27synopsis: "LIBSVM Bindings for OCaml"
28description: """
29LIBSVM-OCaml is an OCaml library with bindings to the LIBSVM library, which is
30a library for Support Vector Machines. Support Vector Machines are used to
31create supervised learning models for classification and regression problems in
32machine learning."""
33flags: light-uninstall
34url {
35 src:
36 "https://bitbucket.org/ogu/libsvm-ocaml/downloads/libsvm-ocaml-0.9.0.tar.gz"
37 checksum: [
38 "sha256=080b08a55eb5607de89ced48d7b95fedac4f4cf84b5a2c0b490978c13f8e14c7"
39 "md5=e58074180140dd6c1b9d75ba2d24824d"
40 ]
41}