this repo has no description
1opam-version: "2.0"
2maintainer: "Ben Greenman"
3authors: "Ben Greenman"
4homepage: "http://github.com/bennn/spreadsheet"
5bug-reports: "http://github.com/bennn/spreadsheet/issues"
6license: "LGPL-2.0-or-later"
7doc: "Functor for parsing and building spreadsheets"
8dev-repo: "git+http://github.com/bennn/spreadsheet.git"
9build: [
10 ["ocaml" "setup.ml" "-configure"]
11 [make "all"]
12]
13install: [make "install"]
14remove: ["ocamlfind" "remove" "spreadsheet"]
15depends: [
16 "ocaml" {>= "4.02.0" & < "5.0"}
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19]
20synopsis: "Functor for parsing and building spreadsheets."
21description: """
22Defines a spreadsheet functor and `RowSpec` module type.
23When given a `RowSpec`, the functor produces a module that will represent a
24spreadsheet backed by a set.
25The programmer must provide a `RowSpec` module, which is essentially:
26- An OCaml type to describe spreadsheet rows.
27- Coercions from the row type to/from `string`.
28- A `string list` title describing each column of the spreadsheet."""
29available: [os != "win32"]
30flags: light-uninstall
31url {
32 src: "https://github.com/bennn/spreadsheet/archive/0.1.zip"
33 checksum: [
34 "sha256=494c93d875a2683e7c92b0b788290977f7cd9801dc4efedfec0121079151beac"
35 "md5=c3bdce5e5b379f5333d466fcf5e6ac8f"
36 ]
37}