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