-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcalendars.opam
46 lines (46 loc) · 1.09 KB
/
calendars.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.0.0"
synopsis: "Convert dates between gregorian/julian/french/hebrew calendars"
description:
"OCaml library to convert dates between gregorian/julian/french/hebrew calendars. Code is originally from Geneweb."
maintainer: [
"Elie Canonici-Merle <[email protected]>"
"Olivier Pierre <[email protected]>"
]
authors: ["Daniel de Rauglaudre"]
license: "GPL-2.0-only"
tags: [
"moon-phase"
"gregorian"
"julian"
"hebrew"
"french-republican"
"calendar"
"date"
]
homepage: "https://github.com/geneweb/calendars"
bug-reports: "https://github.com/geneweb/calendars/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.08"}
"ounit2" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/geneweb/calendars.git"