this repo has no description
1opam-version: "2.0" 2synopsis: "Internationalization library (i18n)" 3description: """ 4This library enables string translation in OCaml. The API is based on GNU 5gettext. It comes with a tool to extract strings which need to be translated 6from OCaml source files. 7 8This enables OCaml program to output string in the native language of 9the user, if a corresponding translation file of the English strings is 10provided. 11 12""" 13maintainer: ["Sylvain Le Gall <sylvain+ocaml@le-gall.net>"] 14authors: ["Sylvain Le Gall"] 15license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 16homepage: "https://github.com/gildor478/ocaml-gettext" 17doc: "https://gildor478.github.io/ocaml-gettext/" 18bug-reports: "https://github.com/gildor478/ocaml-gettext/issues" 19depends: [ 20 "dune" {>= "3.17"} 21 "dune-site" 22 "ocaml" {>= "4.14.0"} 23 "cppo" {>= "1.8.0" & build} 24 "seq" {>= "base" & with-test} 25 "ounit2" {>= "2.2.7" & with-test} 26 "fileutils" {>= "0.6.6"} 27 "odoc" {with-doc} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "--promote-install-files=false" 39 "@install" 40 "@runtest" {with-test} 41 "@doc" {with-doc} 42 ] 43 ["dune" "install" "-p" name "--create-install-files" name] 44] 45dev-repo: "git+https://github.com/gildor478/ocaml-gettext.git" 46url { 47 src: 48 "https://github.com/gildor478/ocaml-gettext/releases/download/v0.5.0/gettext-0.5.0.tbz" 49 checksum: [ 50 "sha256=08dd9df55b2af1838e2312be4be942b4375dbc18c2aed0ca1924488750e34f5d" 51 "sha512=4a09eab6d6f0d6ec435ca3d70305e2f97cbcc04bea72f85efcf649a0ead2faa322a0b054eb953b719f6dea98fb08de32fc80b4cf967681465c5a51e335aaf8d4" 52 ] 53} 54x-commit-hash: "999e85cadbe675f8e60083241b403438f8d2c869"