From 4818467f40cddf7f58ac2974527a6f2ef46c5c17 Mon Sep 17 00:00:00 2001 From: Hugo Heuzard Date: Wed, 18 Nov 2020 09:36:09 +0000 Subject: [PATCH] tune opam file --- odate.opam | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/odate.opam b/odate.opam index 6f0319c..1249468 100644 --- a/odate.opam +++ b/odate.opam @@ -4,10 +4,22 @@ authors: [ "Hugo Heuzard" ] license: "MIT" homepage: "https://github.com/hhugo/odate" bug-reports: "https://github.com/hhugo/odate/issues" +dev-repo: "git+https://github.com/hhugo/odate.git" + +synopsis: "Date & Duration Library" + +description: """ +Simple date and duration manipulation. Also implement duration printer +based on string format. Already implemented in opalang +[http://opalang.org/]. For documentation about the format, see : +[http://doc.opalang.org/value/stdlib.core.date/Duration/try_generate_printer]. +""" + build: [ ["dune" "subst"] {pinned} ["dune" "build" "-p" name "-j" jobs] ] + depends: [ "ocaml" {>= "4.07.0"} "dune" {build} @@ -15,11 +27,3 @@ depends: [ "base-unix" "ppx_expect" {with-test} ] -synopsis: "Date & Duration Library" -description: """ -Simple date and duration manipulation. Also implement duration printer -based on string format. Already implemented in opalang -[http://opalang.org/]. For documentation about the format, see : -[http://doc.opalang.org/value/stdlib.core.date/Duration/try_generate_printer]. -""" -dev-repo: "git+https://github.com/hhugo/odate.git"