this repo has no description
1opam-version: "2.0"
2maintainer: "zoggy@bat8.org"
3authors: "Maxence Guesdon"
4homepage: "https://framagit.org/zoggy/ocaml-lru-cache"
5bug-reports: "https://framagit.org/zoggy/ocaml-lru-cache/issues"
6license: "BSD-3-Clause"
7doc: "https://framagit.org/zoggy/ocaml-lru-cache"
8tags: "cache"
9dev-repo: "git+https://framagit.org/zoggy/ocaml-lru-cache.git"
10build: [make "all"]
11install: [make "install"]
12remove: ["ocamlfind" "remove" "lru-cache"]
13depends: [
14 "ocaml" {>= "4.02.0"}
15 "ocamlfind"
16]
17post-messages: [ "This library has been renamed to lru_cache since version 0.4.0" ]
18synopsis: "A simple implementation of a LRU cache"
19description: """
20ocaml-lru-cache is a simple OCaml implementation of a cache using
21the [Least Recently Used (LRU)](https://en.wikipedia.org/wiki/Cache_algorithms)
22strategy."""
23flags: light-uninstall
24url {
25 src:
26 "https://zoggy.frama.io/ocaml-lru-cache/releases/ocaml-lru-cache-0.3.0.tar.gz"
27 checksum: [
28 "sha256=09c47dafcf9bfc3f36aa12a5df051cf5f90fbef5097031ab30239ceebb1bce93"
29 "md5=33da0c73f5cb1d671d2e6158c5d0edd1"
30 ]
31}