opam-version: "2.0"
maintainer: "zoggy@bat8.org"
authors: ["Maxence Guesdon"]
homepage: "https://github.com/zoggy/ocaml-lru-cache"
license: "LGPL-3.0-only"
doc: ["https://github.com/zoggy/ocaml-lru-cache"]
dev-repo: "git+https://github.com/zoggy/ocaml-lru-cache.git"
bug-reports: "https://github.com/zoggy/ocaml-lru-cache/issues"
tags: ["cache"]

build: [
  [make "all"]
]
install: [
  [make "install"]
]
remove: [["ocamlfind" "remove" "lru-cache"]]
depends: [
  "ocaml" {>= "4.02.0"}
  "ocamlfind"
]
synopsis: "A simple implementation of a LRU cache."
description: """
ocaml-lru-cache is a simple OCaml implementation of a cache using
the [Least Recently Used (LRU)](https://en.wikipedia.org/wiki/Cache_algorithms)
strategy."""
flags: light-uninstall
url {
  src: "https://github.com/zoggy/ocaml-lru-cache/archive/0.1.0.tar.gz"
  checksum: "md5=0d5398118c2c7d1e5d5a86f1ed23b893"
}
