-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathyuujinchou.opam
29 lines (29 loc) · 991 Bytes
/
yuujinchou.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
opam-version: "2.0"
name: "yuujinchou"
synopsis: "A domain-specific language for manipulating hierarchical names"
description: """
This package offers a domain-specific language for manipulating hierarchical names. It intends to facilitate the implementation of lexical scoping and import statements.
"""
maintainer: "favonia <[email protected]>"
authors: [
"favonia <[email protected]>"
"Jon Sterling <[email protected]>"
]
license: "Apache-2.0"
homepage: "https://github.com/RedPRL/yuujinchou"
bug-reports: "https://github.com/RedPRL/yuujinchou/issues"
dev-repo: "git+https://github.com/RedPRL/yuujinchou.git"
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "5.0"}
"algaeff" {>= "0.2"}
"bwd" {>= "2.1"}
"alcotest" {>= "1.5" & with-test}
"qcheck-core" {>= "0.18" & with-test}
"odoc" {>= "2.0" & with-doc}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
["dune" "build" "-p" name "-j" jobs "@doc"] {with-doc}
]