this repo has no description
1opam-version: "2.0"
2synopsis: "A simple implementation of a Least-Recently-Used cache"
3maintainer: "zoggy@bat8.org"
4authors: "Zoggy <zoggy@bat8.org>"
5license: "GPL-3.0-only"
6homepage: "https://zoggy.frama.io/ocaml-lru-cache/"
7doc: "https://zoggy.frama.io/ocaml-lru-cache/refdoc/lru_cache/"
8bug-reports: "https://framagit.org/zoggy/ocaml-lru-cache/issues"
9depends: [
10 "dune" {>= "2.9"}
11 "ocaml" {>= "4.12.0"}
12 "lwt" {with-test}
13 "lwt_ppx" {with-test}
14 "odoc" {with-doc}
15]
16build: [
17 ["dune" "subst"] {dev}
18 [
19 "dune"
20 "build"
21 "-p"
22 name
23 "-j"
24 jobs
25 "--promote-install-files=false"
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30 ["dune" "install" "-p" name "--create-install-files" name]
31]
32dev-repo: "git+https://framagit.org/zoggy/ocaml-lru-cache.git"
33url {
34 src:
35 "https://zoggy.frama.io/ocaml-lru-cache/releases/ocaml-lru-cache-0.4.0.tar.bz2"
36 checksum: [
37 "md5=700969587b907565f94d5bb434c7114b"
38 "sha512=a7ae4b7f5c0f33dfc686f32b277a8b1f0530c5990384a6eacfe2dc22cf5483c2303ffa090fd13d5d3449273500a005b70c5cda7ff9b90e7a6433d2c72974cf22"
39 ]
40}