-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsyndic.opam
34 lines (31 loc) · 953 Bytes
/
syndic.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
opam-version: "2.0"
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
authors: [ "Romain Calascibetta"
"Christophe Troestler" ]
license: "MIT"
homepage: "https://github.com/Cumulus/Syndic"
dev-repo: "git+https://github.com/Cumulus/Syndic.git"
bug-reports: "https://github.com/Cumulus/Syndic/issues"
doc: "https://cumulus.github.io/Syndic/"
synopsis: "RSS1, RSS2, Atom and OPML1 parsing"
description: """
Pure OCaml Library for parsing and writing various types of
feeds and subscriber lists."""
build: [
[ "dune" "subst" ]
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name ] {with-test & ocaml:version >= "4.04.1"}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune"
"ptime"
"uri" {>= "1.9"}
"xmlm" {>= "1.2.0"}
"fmt" {with-test}
"ocurl" {with-test}
"fpath" {with-test}
"ocplib-json-typed" {with-test}
"base-unix" {with-test}
"jsonm" {with-test}
]