this repo has no description
1opam-version: "2.0" 2maintainer: "ygrek@autistici.org" 3homepage: "https://ygrek.org/p/ocaml-hdfs" 4dev-repo: "git+https://github.com/ygrek/ocaml-hdfs.git" 5bug-reports: "https://github.com/ygrek/ocaml-hdfs/issues" 6doc: "https://ygrek.org/p/ocaml-hdfs/api/index.html" 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8authors: ["ygrek"] 9tags: [ "org:ygrek" "clib:hdfs" ] 10build: [ 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["ocaml" "setup.ml" "-doc"] {with-doc} 14] 15install: ["ocaml" "setup.ml" "-install"] 16remove: [ 17 ["ocamlfind" "remove" "hdfs"] 18] 19depends: [ 20 "ocaml" {>= "4.03.0" & < "4.10"} 21 "base-bytes" 22 "base-unix" 23 "camlidl" 24 "ocamlbuild" {build} 25 "ocamlfind" {build & >= "1.5"} 26] 27x-ci-accept-failures: ["debian-unstable"] 28post-messages: [ 29 " 30 This package depends on C compiler being able to find libhdfs header and library files. 31 Given that hadoop is often installed outside of default system paths it may require additional 32 manual configuration for the build to succeed. 33 See https://github.com/ygrek/ocaml-hdfs/blob/master/README.md 34 " 35 {failure} 36] 37synopsis: "Bindings to libhdfs" 38description: "libhdfs is a JNI based C api for Hadoop's DFS. It provides a simple subset of C apis to manipulate DFS files and the filesystem" 39flags: light-uninstall 40url { 41 src: "https://ygrek.org/p/release/ocaml-hdfs/ocaml-hdfs-0.1.tar.gz" 42 checksum: [ 43 "sha256=755c282fd23106e498ff47ba1b9fc23bd71ec8b459eb4db7bc3172964b5a8c2a" 44 "md5=69115f9484029f6b2a619153a970e74b" 45 ] 46 mirrors: 47 "https://github.com/ygrek/ocaml-hdfs/releases/download/v0.1/ocaml-hdfs-0.1.tar.gz" 48}