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: "LGPL-3.0-only" 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.1.0.tar.gz" 32 checksum: [ 33 "sha256=560f2dce7f80ae99c202d6769373ed403191eacf1b4455a75787ba573bbb4a3e" 34 "md5=0d5398118c2c7d1e5d5a86f1ed23b893" 35 ] 36}