this repo has no description
1opam-version: "2.0"
2synopsis: "A strongly-typed tensor library à la GLSL"
3description: """
4Phantom-algebra is a pure OCaml library implementing strongly-typed
5small tensors with dimensions 0 ≤ 4, rank ≤ 2, and limited to square matrices.
6It makes it possible to manipulate vector and matrix expressions with an
7uniform notation while still catching non-sensical operations at compile time."""
8maintainer: ["Florian Angeletti <octa@polychoron.fr>"]
9authors: ["Florian Angeletti <octa@polychoron.fr>"]
10license: "MIT"
11homepage: "https://github.com/Octachron/phantom_algebra"
12bug-reports: "https://github.com/Octachron/phantom_algebra/issues"
13depends: [
14 "dune" {>= "2.5"}
15 "ocaml" {>= "4.06.0"}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/Octachron/phantom_algebra.git"
32url {
33 src:
34 "https://github.com/Octachron/phantom_algebra/releases/download/1.0.1/phantom-algebra-1.0.1.tbz"
35 checksum: [
36 "sha256=40064821df7ed64443743d42f9dd4f625a6145e3cd64048304e9b47aa3076e3b"
37 "sha512=6ae9fed9005bb73ee68fa1d78f565cc152d08a7da118ed4a123326f3047a124697778defa28d1e2a085377f8c3b46bb43e39dcde348dd2737d49a0f63590d19e"
38 ]
39}
40x-commit-hash: "aaedeb7c6b53bc8cafd432f807134c93be298197"