-
Notifications
You must be signed in to change notification settings - Fork 3
/
asak.opam
36 lines (30 loc) · 987 Bytes
/
asak.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
opam-version: "2.0"
name: "asak"
version: "0.5"
synopsis: "Partitioning OCaml codes"
description:
"""
Asak provides functions to parse, type-check and identify similar OCaml codes.
These functions are then used to partition codes implementing the same function and help to detect code duplication.
"""
maintainer: ["[email protected]"]
authors: ["Alexandre Moine"]
license: "MIT"
homepage: "https://github.com/nobrakal/asak"
doc: "https://nobrakal.github.io/asak/asak/index.html"
bug-reports: "https://github.com/nobrakal/asak/issues"
dev-repo: "git+https://github.com/nobrakal/asak.git"
depends: [
"ocaml" {>= "4.10" & < "5.3"}
"cmdliner" {>= "1.1.0"}
"dune" {> "1.5"}
"cppo" {build & >= "1.6.0"}
"odoc" {with-doc & >= "1.2.0"}
"alcotest" {with-test & >= "0.8.0"}
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]