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 detect code duplication. 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.10"} 21 "cmdliner" {>= "1.0.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 28build: [ 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 35url { 36 src: "https://github.com/nobrakal/asak/archive/0.2.tar.gz" 37 checksum: [ 38 "md5=dcf2006b1fb818261aab8fb7b4387b10" 39 "sha512=8ee28c765f5d5bf7f4caae9a8f806501f5563f17360ad3c9e1b78bbb849697ae53d0165a6e5eb38a061c92547f2f9863ae0e693fea7f76cecf1557ac1ccba2c2" 40 ] 41}