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" 8license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 9build: [ 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["ocaml" "setup.ml" "-doc"] {with-doc} 13] 14remove: [["ocamlfind" "remove" "libsvm"]] 15depends: [ 16 "ocaml" {>= "3.12"} 17 "core" 18 "lacaml" {< "8.0"} 19 "ocamlfind" 20 "ocamlbuild" {build} 21] 22depopts: ["sexplib"] 23conflicts: [ 24 "sexplib" {>= "113.24.00"} 25] 26depexts: [ 27 ["libsvm-dev"] {os-family = "debian"} 28] 29install: ["ocaml" "setup.ml" "-install"] 30synopsis: "LIBSVM Bindings for OCaml" 31description: """ 32LIBSVM-OCaml is an OCaml library with bindings to the LIBSVM library, which is 33a library for Support Vector Machines. Support Vector Machines are used to 34create supervised learning models for classification and regression problems in 35machine learning.""" 36flags: light-uninstall 37url { 38 src: 39 "https://bitbucket.org/ogu/libsvm-ocaml/downloads/libsvm-ocaml-0.9.2.tar.gz" 40 checksum: [ 41 "sha256=44d7c52b85fe8dd9af15fc247e720c1c83f25b8b00b5db29fc15911cae3961e7" 42 "md5=18edd941c092f5ca89d9e6986af13270" 43 ] 44}