-
Notifications
You must be signed in to change notification settings - Fork 1
/
icalendar.opam
40 lines (37 loc) · 969 Bytes
/
icalendar.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
opam-version: "2.0"
maintainer: [
"Stefanie Schirmer @linse"
]
authors: [
"Stefanie Schirmer @linse"
"Hannes Mehnert"
]
homepage: "https://github.com/robur-coop/icalendar"
bug-reports: "https://github.com/robur-coop/icalendar/issues"
dev-repo: "git+https://github.com/robur-coop/icalendar.git"
tags: ["org:mirage" "org:robur"]
doc: "https://robur-coop.github.io/icalendar/"
license: "ISC"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "1.3"}
"alcotest" {with-test}
"fmt"
"angstrom" {>= "0.14.0"}
"re" {>= "1.7.2"}
"uri"
"ptime"
"ppx_deriving"
"gmap" {>= "0.3.0"}
]
synopsis: "A library to parse and print the iCalendar (RFC 5545) format"
description: """
Parse and print .ics files as specified in RFC 5545.
Supports recurrent events, but only to the day level of detail.
Does not support vJournal components.
"""