-
Notifications
You must be signed in to change notification settings - Fork 19
/
extunix.opam
62 lines (61 loc) · 1.52 KB
/
extunix.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Collection of thin bindings to various low-level system API"
description: """
Motto: "Be to Unix, what extlib is to stdlib"
* Implement thin C bindings that directly map to underlying system API.
* Provide common consistent ocaml interface: naming convention, exceptions.
* Simple to build - no extra dependencies.
"""
maintainer: ["[email protected]" "Antonin Décimo <[email protected]>"]
authors: [
"Andre Nathan"
"Antonin Décimo"
"Dmitry Grebeniuk"
"François Bobot"
"Gerd Stolpmann"
"Goswin von Brederlow"
"Joshua Smith"
"Kaustuv Chaudhuri"
"Markus W. Weissmann"
"Mehdi Dogguy"
"Niki Yoshiuchi"
"Pierre Chambart"
"Roman Vorobets"
"Stéphane Glondu"
"Sylvain Le Gall"
"Teague Hansen"
"ygrek"
"Zhenya Lykhovyd"
]
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
tags: ["org:ygrek"]
homepage: "https://github.com/ygrek/extunix"
bug-reports: "https://github.com/ygrek/extunix/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.06"}
"dune-configurator" {>= "2.9" & build}
"ppxlib" {>= "0.18" & build}
"ounit2" {with-test}
"base-bytes"
"base-bigarray"
"base-unix"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ygrek/extunix.git"
depexts: [["libexecinfo-dev"] {os = "alpine" & "3.5" <= os-version & os-version < "3.17"}]