diff --git a/stdint.opam b/stdint.opam index 47de018..a6b9cbf 100644 --- a/stdint.opam +++ b/stdint.opam @@ -1,5 +1,23 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" +build: [ + ["dune" "subst"] {pinned} + ["dune" "build" "-p" name "-j" jobs] + ["dune" "runtest" "-p" name "-j" jobs] {with-test} + ["dune" "build" "-p" name "@doc"] {with-doc} +] +maintainer: ["Markus W. Weissmann "] +authors: [ + "Andre Nathan " + "Jeff Shaw " + "Markus W. Weissmann " + "Florian Pichlmeier " +] +bug-reports: "https://github.com/andrenth/ocaml-stdint/issues" +homepage: "https://github.com/andrenth/ocaml-stdint" +doc: "https://andrenth.github.io/ocaml-stdint/" +license: "MIT" +dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git" synopsis: "Signed and unsigned integer types having specified widths" description: """ The stdint library provides signed and unsigned integer types of various fixed @@ -11,33 +29,7 @@ like maximum and minimum values, infix operators conversion to and from every other integer type (including int, float and nativeint), parsing from and conversion to readable strings (binary, octal, decimal, hexademical), conversion to and from buffers in both big endian and little endian byte order.""" -maintainer: ["Markus W. Weissmann "] -authors: [ - "Andre Nathan " - "Jeff Shaw " - "Markus W. Weissmann " - "Florian Pichlmeier " -] -license: "MIT" -homepage: "https://github.com/andrenth/ocaml-stdint" -doc: "https://andrenth.github.io/ocaml-stdint/" -bug-reports: "https://github.com/andrenth/ocaml-stdint/issues" depends: [ "ocaml" {>= "4.03"} - "dune" {>= "1.4"} + "dune" {>= "1.10"} ] -build: [ - ["dune" "subst"] {pinned} - [ - "dune" - "build" - "-p" - name - "-j" - jobs - "@install" - "@runtest" {with-test} - "@doc" {with-doc} - ] -] -dev-repo: "git+https://github.com/andrenth/ocaml-stdint.git"