diff --git a/graphics.opam b/graphics.opam index 67368eb..ac45ba8 100644 --- a/graphics.opam +++ b/graphics.opam @@ -1,19 +1,20 @@ opam-version: "2.0" maintainer: "jeremie@dimino.org" +bug-reports: "https://github.com/ocaml/graphics/issues" +dev-repo: "git+https://github.com/ocaml/graphics.git" authors: ["Jérémie Dimino "] homepage: "https://github.com/ocaml/graphics" -bug-reports: "https://github.com/ocaml/graphics/issues" +license: "LGPL-2.1 with OCaml linking exception" doc: "https://ocaml.github.io/graphics/" -dev-repo: "git+https://github.com/ocaml/graphics.git" -license: "LGPL 2.1 with linking exception" build: [ ["dune" "build" "-p" name "-j" jobs] ] depends: [ - "ocaml" {>= "4.06.1"} - "dune" {build & >= "1.6"} + "conf-libX11" + "ocaml" {>= "4.09.0~~"} + "dune" {>= "1.6"} ] -synopsis: "Graphics library" +synopsis: "The OCaml graphics library" description: """ The graphics library provides a set of portable drawing primitives. Drawing takes place in a separate window that is created diff --git a/src/dune b/src/dune index 1094b15..dd42705 100644 --- a/src/dune +++ b/src/dune @@ -21,6 +21,7 @@ let () = (library (public_name graphics) (wrapped false) + (synopsis "Portable drawing primitives") (c_names %s) (c_library_flags %s))