this repo has no description
1opam-version: "2.0" 2 3maintainer: "ju.sagot@gmail.com" 4 5homepage: "http://sagotch.github.io/gedcom.ml/" 6bug-reports: "https://github.com/sagotch/gedcom.ml/issues" 7 8build: [make "-C" "src/" "build"] 9remove: [ make "-C" "src/" "uninstall"] 10 11depends: [ 12 "ocaml" {>= "4.00.1"} 13 "ocamlfind" {build} 14 "ocamlbuild" {build} 15] 16dev-repo: "git+https://github.com/sagotch/gedcom.ml" 17install: [make "-C" "src/" "install"] 18synopsis: "GEDCOM parsing." 19description: """ 20First release parses a GEDCOM file easily, and creates the tree 21representation of the file. 22There is no real record type such as FAMI or INDI, just a generic 23line representation. 24No check is perform on file or parsed lines, so GEDCOM not 25respecting official structures will be parsed without complaining.""" 26authors: "Julien Sagot <ju.sagot@gmail.com>" 27url { 28 src: "https://github.com/sagotch/gedcom.ml/archive/v1.0.0.tar.gz" 29 checksum: [ 30 "sha256=67985222e4ea530fa60a2651cbe25d55575504eaeaf51c5c3735ebf7e1c7a0df" 31 "md5=ec7976dadcdbb807c8a3f17540ab5131" 32 ] 33}