-
Notifications
You must be signed in to change notification settings - Fork 0
/
atd.opam
49 lines (49 loc) · 1.42 KB
/
atd.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Parser for the ATD data format description language"
description: """
ATD is the OCaml library providing a parser for the ATD language and various
utilities. ATD stands for Adjustable Type Definitions in reference to its main
property of supporting annotations that allow a good fit with a variety of data
formats. """
maintainer: ["Rudi Grinberg <[email protected]>"]
authors: [
"Martin Jambon <[email protected]>"
"David Sheets <[email protected]>"
"Rudi Grinberg <[email protected]>"
"Ivan Jager <[email protected]>"
"Jeff Meister <[email protected]>"
"Carmelo Piccione <[email protected]>"
"Raman Varabets <[email protected]>"
"Mathieu Baudet <[email protected]>"
"Rauan Mayemir <[email protected]>"
"Louis Roché <[email protected]>"
"Brendan Long <[email protected]>"
"Christophe Troestler <[email protected]>"
"Vincent Bernardoff <[email protected]>"
"haoyang <[email protected]>"
]
license: "MIT"
homepage: "https://github.com/ahrefs/atd"
bug-reports: "https://github.com/ahrefs/atd/issues"
depends: [
"ocaml" {>= "4.03"}
"dune" {>= "1.11"}
"menhir"
"easy-format"
"odoc" {with-doc}
]
dev-repo: "git+https://github.com/ahrefs/atd.git"
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]