opam-version: "2.0"
authors: "Simon Cruanes"
maintainer: "simon.cruanes@inria.fr"
build: [
    ["./configure" "--disable-docs"
        "--%{delimcc:enable}%-invert"
        "--%{base-bigarray:enable}%-bigarray"
    ]
    [make "build"]
]
install: [make "install"]
remove: [
    ["ocamlfind" "remove" "sequence"]
]
depends: [
  "ocaml" {< "4.07.0"}
  "ocamlfind"
  "base-bytes"
  "ocamlbuild" {build}
]
tags: [ "sequence" "iterator" "iter" "fold" ]
homepage: "https://github.com/c-cube/iter/"
depopts: ["delimcc" "base-bigarray"]
doc: "http://cedeela.fr/~simon/software/iter/Sequence.html"
bug-reports: "https://github.com/c-cube/iter/issues"
dev-repo: "git+https://github.com/c-cube/iter.git"
synopsis: "Simple and lightweight sequence abstract data type."
description: """
Simple sequence abstract data type, intended to transfer a finite number of
elements from one data structure to another. Some transformations on sequences,
like `filter`, `map`, `take`, `drop` and `append` can be performed before the
sequence is iterated/folded on."""
flags: light-uninstall
url {
  src: "https://github.com/c-cube/iter/archive/0.6.tar.gz"
  checksum: "sha256=a0d725f44fa618f9d3363ad316ec8ba3592fc1b6f40df3da0bcf0c7019995b4c"
}
