this repo has no description
1opam-version: "2.0"
2
3synopsis: "Partitioning OCaml codes"
4description:
5"""
6Asak provides functions to parse, type-check and identify similar OCaml codes.
7These functions are then used to partition codes implementing the same function and help to factorize existing code.
8"""
9
10maintainer: ["alexandre@moine.me"]
11authors: ["Alexandre Moine"]
12license: "MIT"
13
14homepage: "https://github.com/nobrakal/asak"
15doc: "https://nobrakal.github.io/asak/asak/index.html"
16bug-reports: "https://github.com/nobrakal/asak/issues"
17dev-repo: "git+https://github.com/nobrakal/asak.git"
18
19depends: [
20 "ocaml" {>= "4.05" & < "4.09.0"}
21 "dune" {> "1.5"}
22 "cppo" {build & >= "1.6.0"}
23 "odoc" {with-doc & >= "1.2.0"}
24]
25
26build: [
27 ["dune" "subst"] {dev}
28 ["dune" "build" "-p" name "-j" jobs]
29 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
30]
31
32url {
33 src:
34 "https://github.com/nobrakal/asak/archive/0.1.tar.gz"
35 checksum: [
36 "sha256=dc0865360eae205ec059b61d6f38785815029f3c194ecffdedf88bd6bd3bc687"
37 "sha512=9825500b6064f32f65fea7bc8dbabbed3ecc6e05dd79cbd23634efa61607b787fb0cd44fa549f9181064779eed98b9cb37675007253cbaf025c8e02c9e08f3b5"
38 ]
39}