Skip to content

Commit 94b8b7b

Browse files
committed
sequence.0.9 - via opam-publish
1 parent e94fdbc commit 94b8b7b

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Simple and lightweight sequence abstract data type.
2+
3+
Simple sequence abstract datatype, intended to iterate efficiently
4+
on collections while performing some transformations.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
opam-version: "1.2"
2+
maintainer: "simon.cruanes@inria.fr"
3+
authors: "Simon Cruanes"
4+
homepage: "https://github.com/c-cube/sequence/"
5+
bug-reports: "https://github.com/c-cube/sequence/issues"
6+
license: "BSD-2-clauses"
7+
doc: "http://cedeela.fr/~simon/software/sequence/Sequence.html"
8+
tags: ["sequence" "iterator" "iter" "fold"]
9+
dev-repo: "https://github.com/c-cube/sequence.git"
10+
build: [
11+
[
12+
"./configure"
13+
"--disable-docs"
14+
"--%{delimcc:enable}%-invert"
15+
"--%{base-bigarray:enable}%-bigarray"
16+
]
17+
[make "build"]
18+
]
19+
install: [make "install"]
20+
remove: ["ocamlfind" "remove" "sequence"]
21+
depends: [
22+
"ocamlfind"
23+
"base-bytes"
24+
"ocamlbuild" {build}
25+
]
26+
depopts: ["delimcc" "base-bigarray"]

packages/sequence/sequence.0.9/url

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
http: "https://github.com/c-cube/sequence/archive/0.9.tar.gz"
2+
checksum: "d8304c09a19ff45b925d6193d60477e7"

0 commit comments

Comments
 (0)