this repo has no description
1opam-version: "2.0"
2maintainer: "unixjunkie@sdf.org"
3authors: ["Francois Berenger"]
4homepage: "https://github.com/UnixJunkie/oranger"
5bug-reports: "https://github.com/UnixJunkie/oranger/issues"
6dev-repo: "git+https://github.com/UnixJunkie/oranger.git"
7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
8build: [
9 ["dune" "build" "-p" name "-j" jobs]
10]
11install: [
12 ["sh" "install_ranger.sh" bin]
13]
14depends: [
15 "dune" {>= "1.0.0"}
16 "conf-cmake" {build}
17 "re"
18 "dolog" {>= "4.0.0" & < "5.0.0"}
19 "batteries"
20 "minicli" {with-test & >= "5.0.0"}
21 "cpm" {with-test}
22 "conf-gnuplot" {with-test}
23]
24synopsis: "OCaml wrapper for the ranger (C++) random forests implementation"
25description: """
26Ranger is run from the command line and data are exchanged via text files.
27This is quick and dirty, not a clean OCaml interface to ranger."""
28extra-source "0.9.11.tar.gz" {
29 src: "https://github.com/imbs-hl/ranger/archive/0.9.11.tar.gz"
30 checksum: [
31 "sha256=8f37ece3ced9eeb86373199028a201b5d3bc2e27ebaffaf4f0075bc4b10a93ff"
32 "md5=cf770dfdde5ef250bfd561ef2b0758ee"
33 ]
34}
35url {
36 src: "https://github.com/UnixJunkie/oranger/archive/v2.0.2.tar.gz"
37 checksum: [
38 "sha256=a653f7d9d3d9ef04c1f9e8a0f5b16b6111aa7f8c8830669757d0e94b03153d28"
39 "md5=d45f3297e8223adaaa204fe6c3587221"
40 ]
41}
42extra-source "compile_ranger.sh" {
43 src:
44 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/oranger/compile_ranger.sh.2.0.2"
45 checksum: [
46 "sha256=a8fab34af2aa8a381591072fefc8fc15e85f4e15641266d41fc509ec446d6d6e"
47 "md5=eed90b41a0a8556f4a00df415c32d125"
48 ]
49}