mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 03:05:29 -05:00
37 lines
902 B
Text
37 lines
902 B
Text
opam-version: "1.2"
|
|
name: "sequence"
|
|
version: "0.10"
|
|
author: "Simon Cruanes"
|
|
maintainer: "simon.cruanes@inria.fr"
|
|
license: "BSD-2-clauses"
|
|
build: [
|
|
["./configure" "--disable-docs"
|
|
"--%{delimcc:enable}%-invert"
|
|
"--%{base-bigarray:enable}%-bigarray"
|
|
"--prefix" "%{prefix}%"
|
|
]
|
|
[make "build"]
|
|
]
|
|
build-doc: [
|
|
["./configure" "--enable-docs"]
|
|
[make "doc"]
|
|
]
|
|
build-test: [
|
|
["./configure" "--enable-tests"]
|
|
[make "test"]
|
|
]
|
|
install: [make "install"]
|
|
remove: [
|
|
["ocamlfind" "remove" "sequence"]
|
|
]
|
|
depends: [
|
|
"ocamlfind"
|
|
"base-bytes"
|
|
"ocamlbuild" {build}
|
|
]
|
|
tags: [ "sequence" "iterator" "iter" "fold" ]
|
|
homepage: "https://github.com/c-cube/sequence/"
|
|
depopts: ["delimcc" "base-bigarray"]
|
|
doc: "http://cedeela.fr/~simon/software/sequence/Sequence.html"
|
|
bug-reports: "https://github.com/c-cube/sequence/issues"
|
|
dev-repo: "https://github.com/c-cube/sequence.git"
|