-
Notifications
You must be signed in to change notification settings - Fork 0
/
cstruct-riscv.opam
33 lines (32 loc) · 1.28 KB
/
cstruct-riscv.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: "5.0.0"
opam-version: "2.0"
maintainer: "Sai Venkata Krishnan <[email protected]"
authors: ["Anil Madhavapeddy" "Richard Mortier" "Thomas Gazagnaire"
"Pierre Chambart" "David Kaloper" "Jeremy Yallop" "David Scott"
"Mindy Preston" "Thomas Leonard" "Anton Kochkov" "Etienne Millon" ]
homepage: "https://github.com/mirage/ocaml-cstruct"
license: "ISC"
dev-repo: "git+https://github.com/mirage/ocaml-cstruct.git"
bug-reports: "https://github.com/mirage/ocaml-cstruct/issues"
doc: "https://mirage.github.io/ocaml-cstruct/"
tags: [ "org:mirage" "org:ocamllabs" ]
#extra-files: ["dune.patch" "md5=6a0ebd56455818c0749caafbb867e182"]
#patches: ["dune.patch"]
build: [
[make "add-cap-files"]
["dune" "subst"] {pinned}
["dune" "build" "-x" "riscv" "-p" "cstruct" "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {= "4.07.0"}
"dune" {build & >= "1.0"}
"bigarray-compat-riscv"
"ocaml-riscv"
"alcotest" {with-test}
]
synopsis: "Access C-like structures directly from OCaml"
description: """
Cstruct is a library and syntax extension to make it easier to access C-like
structures directly from OCaml. It supports both reading and writing to these
structures, and they are accessed via the `Bigarray` module."""