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 ["jbuilder" "build" "-p" name "-j" jobs]
10]
11install: [
12 ["sh" "compile_ranger.sh"]
13]
14remove: [
15 ["rm" "-f" "%{prefix}%/bin/ml_rf_ranger"]
16]
17depends: [
18 "jbuilder" {>= "1.0+beta7"}
19 "conf-cmake" {build}
20 "conf-wget" {build}
21# "conf-c++" {build}
22 "re"
23 "dolog" {< "4.0.0"}
24 "batteries"
25 "minicli" {with-test}
26 "cpm" {with-test}
27 "conf-gnuplot" {with-test}
28]
29flags: light-uninstall
30synopsis: "OCaml wrapper for the ranger (C++) random forests implementation"
31description: """
32Ranger is run from the command line and data are exchanged via text files.
33This is quick and dirty, not a proper OCaml interface to ranger."""
34url {
35 src: "https://github.com/UnixJunkie/oranger/archive/v0.9.11.tar.gz"
36 checksum: [
37 "sha256=99fcf458ccf3e99926cc1dbf05a6d697b243493340ee28871e062d856423aca9"
38 "md5=0b77d5114a4dd23ed7e5ddb391413411"
39 ]
40}
41extra-source "0.9.11.tar.gz" {
42 src: "https://github.com/imbs-hl/ranger/archive/0.9.11.tar.gz"
43 checksum: [
44 "sha256=8f37ece3ced9eeb86373199028a201b5d3bc2e27ebaffaf4f0075bc4b10a93ff"
45 "md5=cf770dfdde5ef250bfd561ef2b0758ee"
46 ]
47}
48extra-source "compile_ranger.sh" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/oranger/compile_ranger.sh.0.9.11"
51 checksum: [
52 "sha256=45eb50fef0721b262a5d25c8ebd2fdfc7ea9e7ac030c03fb0810cc3f51d08171"
53 "md5=fe559d4e91198ea1dfc5acbe0aa76558"
54 ]
55}