-
Notifications
You must be signed in to change notification settings - Fork 5
/
ppx_cstubs.opam
33 lines (32 loc) · 1.01 KB
/
ppx_cstubs.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: [ "[email protected]" ]
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://fdopen.github.io/ppx_cstubs/"
dev-repo: "git+https://github.com/fdopen/ppx_cstubs.git"
doc: "https://fdopen.github.io/ppx_cstubs/"
bug-reports: "https://github.com/fdopen/ppx_cstubs/issues"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"bigarray-compat"
"ctypes" {>= "0.13.0"}
"integers"
"num"
"result"
"containers" {>= "2.2"}
"cppo" {build & >= "1.3"}
"ocaml" {>= "4.04.2"}
"ppxlib" {>= "0.22.0"}
"ocamlfind" {>= "1.7.2"} # not only a build dependency, it depends on findlib.top
"dune" {>= "1.6"}
"re" {>= "1.7.2"}
]
synopsis: "Preprocessor for easier stub generation with ctypes"
description: """
ppx_cstubs is a ppx-based preprocessor for stub generation with
ctypes. ppx_cstubs creates two files from a single ml file: a file
with c stub code and an OCaml file with all additional boilerplate
code.
"""