this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3authors: "Simon Cruanes" 4homepage: "https://github.com/c-cube/gen/" 5bug-reports: "https://github.com/c-cube/gen/issues" 6doc: "http://cedeela.fr/~simon/software/gen/" 7tags: ["gen" "iterator" "iter" "fold"] 8dev-repo: "git+https://github.com/c-cube/gen.git" 9build: [ 10 ["./configure" "--disable-docs" "--disable-tests" "--disable-bench"] 11 [make "all"] 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "gen"] 15depends: [ 16 "ocaml" {< "5.0"} 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19] 20synopsis: "Simple and efficient iterators (modules Gen and GenLabels)." 21description: """ 22Now provides additional modules GenClone and GenMList for lower-level control 23over persistency and duplication of iterators.""" 24flags: light-uninstall 25url { 26 src: "https://github.com/c-cube/gen/archive/0.5.tar.gz" 27 checksum: [ 28 "sha256=2ca822f51491c84e0e288f2bea7cb1453bf35c902a68f25c099b9568f0467e4e" 29 "md5=521a106f9d200ca71635fa5887535436" 30 ] 31}