Skip to content

Commit 5d177f1

Browse files
committed
Package asak.0.5
1 parent 7cef2ca commit 5d177f1

File tree

1 file changed

+40
-0
lines changed
  • packages/asak/asak.0.5

1 file changed

+40
-0
lines changed

packages/asak/asak.0.5/opam

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
3+
synopsis: "Partitioning OCaml codes"
4+
description:
5+
"""
6+
Asak provides functions to parse, type-check and identify similar OCaml codes.
7+
These functions are then used to partition codes implementing the same function and help to detect code duplication.
8+
"""
9+
10+
maintainer: ["[email protected]"]
11+
authors: ["Alexandre Moine"]
12+
license: "MIT"
13+
14+
homepage: "https://github.com/nobrakal/asak"
15+
doc: "https://nobrakal.github.io/asak/asak/index.html"
16+
bug-reports: "https://github.com/nobrakal/asak/issues"
17+
dev-repo: "git+https://github.com/nobrakal/asak.git"
18+
19+
depends: [
20+
"ocaml" {>= "4.10" & < "5.3"}
21+
"cmdliner" {>= "1.1.0"}
22+
"dune" {> "1.5"}
23+
"cppo" {build & >= "1.6.0"}
24+
"odoc" {with-doc & >= "1.2.0"}
25+
"alcotest" {with-test & >= "0.8.0"}
26+
]
27+
28+
build: [
29+
["dune" "subst"] {dev}
30+
["dune" "build" "-p" name "-j" jobs]
31+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
32+
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
33+
]
34+
url {
35+
src: "https://github.com/nobrakal/asak/archive/refs/tags/0.5.tar.gz"
36+
checksum: [
37+
"md5=542e0d58dca1edefbc75e58c141b9cd2"
38+
"sha512=aba0cd40520c69ebfc9004af4462ceb97db9aa0f403c87137df688e695b537a76e9a34926172db2d409e934716d58d58b2e77dc7b02b91670f49caf8d619d666"
39+
]
40+
}

0 commit comments

Comments
 (0)