this repo has no description
1opam-version: "2.0" 2build: [ 3 ["dune" "subst"] {dev} 4 ["dune" "build" "-p" name "-j" jobs] 5 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 6 ["dune" "build" "-p" name "@doc"] {with-doc} 7] 8maintainer: ["Philippe Veber <philippe.veber@gmail.com>"] 9authors: [ 10 "Dominik Brugger <dominikbrugger@fastmail.fm>" 11 "Oliver Gu <gu.oliver@yahoo.com>" 12 "Philippe Veber <philippe.veber@gmail.com>" 13] 14bug-reports: "https://github.com/pveber/libsvm-ocaml/issues" 15homepage: "https://github.com/pveber/libsvm-ocaml" 16license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 17dev-repo: "git+https://github.com/pveber/libsvm-ocaml.git" 18synopsis: "LIBSVM bindings for OCaml" 19description: """ 20 21LIBSVM bindings for OCaml 22 23LIBSVM-OCaml is an OCaml library with bindings to the LIBSVM 24library, which is a library for Support Vector Machines. 25Support Vector Machines are used to create supervised 26learning models for classification and regression problems 27in machine learning. 28""" 29depends: [ 30 "base" 31 "dune" {>= "1.10"} 32 "lacaml" {>= "10.0.0"} 33 "ocaml" {>= "4.03.0" & < "5.0.0"} 34 "stdio" 35 "core_kernel" {with-test} 36] 37url { 38 src: "https://github.com/pveber/libsvm-ocaml/archive/0.10.0.tar.gz" 39 checksum: [ 40 "md5=14d78e69ec457e1516902370cc8d1783" 41 "sha512=0b1e2ec5aff0c9f43504780b88cb1c18b42aa60ad6e00dacedf8ae44e7d5ec02305ee29fef837f190bfcdec8ff4c992a0bf6e67dc72875e4d20f8a9eba2672ef" 42 ] 43}