this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "C++/C parser for Diff/AST" 4description: 5 "C++/C parser for Diff/AST. Diff/AST is a fine-grained source code differencing tool based on an algorithm for computing tree edit distance (TED) between two ordered labeled trees." 6maintainer: [ 7 "Codinuum <codinuum@me.com>" 8 "Masatomo Hashimoto <m.hashimoto@stair.center>" 9] 10authors: [ 11 "Codinuum <codinuum@me.com>" 12 "Masatomo Hashimoto <m.hashimoto@stair.center>" 13] 14license: "Apache-2.0" 15homepage: "https://github.com/codinuum/diffast" 16doc: "https://github.com/codinuum/diffast/README.md" 17bug-reports: "https://github.com/codinuum/diffast/issues" 18available: arch != "x86_32" & arch != "arm32" & arch != "s390x" 19conflicts: [ "ocaml-option-fp" ] 20depends: [ 21 "dune" {>= "3.17"} 22 "ocaml" {>= "4.14"} 23 "camlp-streams" 24 "sedlex" 25 "menhir" 26 "diffast-langs-common" {= version} 27 "vlt" {>= "0.2.4"} 28 "odoc" {with-doc} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 [ 33 "dune" 34 "build" 35 "-p" 36 name 37 "-j" 38 jobs 39 "--promote-install-files=false" 40 "@install" 41 "@runtest" {with-test} 42 "@doc" {with-doc} 43 ] 44 ["dune" "install" "-p" name "--create-install-files" name] 45] 46dev-repo: "git+https://github.com/codinuum/diffast.git" 47url { 48 src: "https://github.com/codinuum/diffast/archive/v0.1.1.tar.gz" 49 checksum: [ 50 "sha256=2b36318d1317efb4e3ae71727934aa8883dde49ad5dd71d85df6a9b9b10bfe0a" 51 "md5=a0d35178f15cd2d2a3b907a0bbcc959c" 52 ] 53}