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"]
13]
14depends: [
15 "dune" {>= "1.0.0"}
16 "conf-cmake" {build}
17 "conf-wget" {build}
18 "re"
19 "dolog" {>= "4.0.0" & < "5.0.0"}
20 "batteries"
21 "minicli" {with-test & >= "5.0.0"}
22 "cpm" {with-test}
23 "conf-gnuplot" {with-test}
24]
25synopsis: "OCaml wrapper for the ranger (C++) random forests implementation"
26description: """
27Ranger is run from the command line and data are exchanged via text files.
28This is quick and dirty, not a clean OCaml interface to ranger."""
29extra-source "0.9.11.tar.gz" {
30 src: "https://github.com/imbs-hl/ranger/archive/0.9.11.tar.gz"
31 checksum: [
32 "sha256=8f37ece3ced9eeb86373199028a201b5d3bc2e27ebaffaf4f0075bc4b10a93ff"
33 "md5=cf770dfdde5ef250bfd561ef2b0758ee"
34 ]
35}
36url {
37 src: "https://github.com/UnixJunkie/oranger/archive/v2.0.1.tar.gz"
38 checksum: [
39 "sha256=fb2904afad279709a8baa1a2037e8f2f8c572a159acaacae00d79887c84401ff"
40 "md5=c3b3d20f9adf1a6a784a041282c9fe33"
41 ]
42}
43extra-source "compile_ranger.sh" {
44 src:
45 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/oranger/compile_ranger.sh.2.0.1"
46 checksum: [
47 "sha256=45eb50fef0721b262a5d25c8ebd2fdfc7ea9e7ac030c03fb0810cc3f51d08171"
48 "md5=fe559d4e91198ea1dfc5acbe0aa76558"
49 ]
50}