this repo has no description
1opam-version: "2.0"
2maintainer: "odietric@gmail.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 "ocamlbuild" {build}
17]
18conflicts: [
19 "sexplib" {>= "113.24.00"}
20]
21patches: [
22 "svm_cli_fix.patch"
23 "calc_scc_fix.patch"
24]
25install: ["ocaml" "setup.ml" "-install"]
26depexts: [
27 ["libsvm-dev"] {os-family = "debian"}
28]
29synopsis: "LIBSVM bindings"
30description:
31 "LIBSVM-OCaml is an OCaml library with bindings to the LIBSVM library."
32flags: light-uninstall
33url {
34 src:
35 "https://bitbucket.org/ogu/libsvm-ocaml/downloads/libsvm-ocaml-0.8.3.tar.gz"
36 checksum: [
37 "sha256=49c310f80bfb7a4660ab0d06176f74baeab8a8e3632a6324afd80ffd09e766ca"
38 "md5=c36599f5be82b2099da5d54a7fd6c4e4"
39 ]
40}
41extra-source "svm_cli_fix.patch" {
42 src:
43 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/libsvm/svm_cli_fix.patch"
44 checksum: [
45 "sha256=da11c033932ca17cffa588038ec0e937f9c152c80ad160b1ad22b3776ec1b70a"
46 "md5=e23c022fa50cb9ef9f8d5d1606b21475"
47 ]
48}
49extra-source "calc_scc_fix.patch" {
50 src:
51 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/libsvm/calc_scc_fix.patch"
52 checksum: [
53 "sha256=1df52cfa4889c098933d3871ef68f542fb7d32f9c42da59766e94aeacb883b21"
54 "md5=86bda1d0d49b1d46222fee310d4ee3e4"
55 ]
56}