this repo has no description
1opam-version: "2.0" 2maintainer: "gu.oliver@yahoo.com" 3authors: [ 4 "Oliver Gu <gu.oliver@yahoo.com>" 5 "Dominik Brugger <dominikbrugger@fastmail.fm>" 6] 7homepage: "https://bitbucket.org/ogu/libsvm-ocaml" 8build: [ 9 ["ocaml" "setup.ml" "-configure"] 10 ["ocaml" "setup.ml" "-build"] 11] 12remove: [["ocamlfind" "remove" "libsvm"]] 13depends: [ 14 "ocaml" 15 "ocamlfind" 16 "core" {>= "108.08.00"} 17 "lacaml" {< "8.0"} 18 "ocamlbuild" {build} 19] 20conflicts: [ 21 "sexplib" {>= "113.24.00"} 22] 23depexts: [ 24 ["libsvm-dev"] {os-family = "debian"} 25] 26install: ["ocaml" "setup.ml" "-install"] 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.1.tar.gz" 37 checksum: [ 38 "sha256=e0ce991cac4c272b58e8a475ac61ab57f5440bc605b9b66ff3e676acc153606d" 39 "md5=a22325e925410ee1e8fae4d270e606af" 40 ] 41}