this repo has no description
1opam-version: "2.0" 2maintainer: "Ahrefs Pte Ltd <github@ahrefs.com>" 3authors: [ "Ahrefs Pte Ltd <github@ahrefs.com>" ] 4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 5homepage: "https://github.com/ahrefs/ocaml-qfs" 6dev-repo: "git+https://github.com/ahrefs/ocaml-qfs.git" 7bug-reports: "https://github.com/ahrefs/ocaml-qfs/issues" 8tags: [ "org:ahrefs" "clib:stdc" "clib:qfs" ] 9build: [ 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 13 ["ocaml" "setup.ml" "-build"] {with-test} 14 ["ocaml" "setup.ml" "-test"] {with-test} 15 ["ocaml" "setup.ml" "-doc"] {with-doc} 16] 17install: ["ocaml" "setup.ml" "-install"] 18remove: [ 19 ["ocamlfind" "remove" "qfs"] 20] 21depends: [ 22 "ocaml" {>= "4.02.0" & < "4.09.0"} 23 "base-bytes" 24 "base-unix" 25 ("extlib" | "extlib-compat") 26 "lwt" {>= "2.4.6"} 27 "ocamlfind" {build & >= "1.5"} 28 "ocamlbuild" {build} 29 "conf-boost" 30] 31x-ci-accept-failures: ["debian-unstable"] 32post-messages: [ 33 " 34 This package requires QFS development files installed, consult https://quantcast.github.io/qfs/ 35 and https://github.com/quantcast/qfs/wiki/Developer-Documentation on how to build manually. 36 37 Tentative instructions for Debian : https://gist.githubusercontent.com/ygrek/7bb217d6ab7b25a765b7/raw 38 " 39 {failure} 40] 41synopsis: "bindings to libqfs - client library to access QFS" 42description: "QFS is a distributed fault-tolerant filesystem by Quantcast" 43flags: light-uninstall 44url { 45 src: "https://github.com/ahrefs/ocaml-qfs/archive/0.5.tar.gz" 46 checksum: [ 47 "sha256=cffd575d20557e076384292ff62c794e49b5966a7a809af741f205563f61ce52" 48 "md5=0d932738cb8cabac807b50a0b9a6b144" 49 ] 50}