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 ["tar" "xzf" "0.9.11.tar.gz"] 11 ["mkdir" "ranger-0.9.11/cpp_version/build"] 12 ["sh" "-c" "cd ranger-0.9.11/cpp_version/build && %{conf-cmake:cmd}% ../"] 13 [make "-C" "ranger-0.9.11/cpp_version/build"] 14] 15install: [ 16 ["cp" "ranger-0.9.11/cpp_version/build/ranger" "%{bin}%/ml_rf_ranger"] 17] 18depends: [ 19 "dune" {>= "1.0.0"} 20 "conf-cmake" {build} 21 "re" 22 "dolog" {>= "6.0.0"} 23 "batteries" 24 "minicli" {with-test & >= "5.0.0"} 25 "cpm" {with-test} 26 "conf-gnuplot" {with-test} 27] 28synopsis: "OCaml wrapper for the ranger (C++) random forests implementation" 29description: """ 30Ranger is run from the command line and data are exchanged via text files. 31This is quick and dirty, not a clean OCaml interface to ranger.""" 32extra-source "0.9.11.tar.gz" { 33 src: "https://github.com/imbs-hl/ranger/archive/0.9.11.tar.gz" 34 checksum: [ 35 "sha256=8f37ece3ced9eeb86373199028a201b5d3bc2e27ebaffaf4f0075bc4b10a93ff" 36 "md5=cf770dfdde5ef250bfd561ef2b0758ee" 37 ] 38} 39url { 40 src: "https://github.com/UnixJunkie/oranger/archive/v2.0.4.tar.gz" 41 checksum: [ 42 "sha256=5427a889637bcb48feeaf8143473696ea5ce84a27250414fea0ac434f096a2a7" 43 "md5=c95f50d6c076ac4abf45c9f6f9edba57" 44 ] 45}