this repo has no description
1opam-version: "2.0" 2maintainer: "hugo.heuzard@gmail.com" 3authors: [ "Hugo Heuzard" ] 4license: "MIT" 5homepage: "https://github.com/besport/ocaml-aliases" 6build: [ 7 ["oasis" "setup"] 8 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 9 ["ocaml" "setup.ml" "-build"] 10 ["ocaml" "setup.ml" "-doc"] {with-doc} 11] 12remove: [ 13 ["ocamlfind" "remove" "aliases"] 14] 15depends: [ 16 "ocaml" 17 "oasis" 18 "ocamlfind" 19 "ocamlbuild" {build} 20] 21dev-repo: "git+https://github.com/besport/ocaml-aliases" 22install: ["ocaml" "setup.ml" "-install"] 23synopsis: "In memory indexes" 24description: """ 25Implemtation of some data structure for : 26 27- temporal index : bitree 28 29- geographic index : quadtree 30 31- string autocomplete : ptree, radix""" 32flags: light-uninstall 33url { 34 src: "https://github.com/besport/ocaml-aliases/archive/0.0.5.tar.gz" 35 checksum: [ 36 "sha256=34ef64e283322a6fa1e843efa7565c56035165c0efde1dbd7bf1f6ff104661d1" 37 "md5=d844a5c9fe0a06abfcc600a0085f45f6" 38 ] 39}