this repo has no description
1opam-version: "2.0"
2maintainer: "zoggy@bat8.org"
3authors: "Maxence Guesdon"
4homepage: "https://www.good-eris.net/ocaml-rdf/"
5license: "LGPL-3.0-only"
6doc: "https://www.good-eris.net/ocaml-rdf/doc.html"
7tags: ["rdf" "semantic web" "xml" "turtle" "graph" "sparql" "utf8"]
8dev-repo: "git+https://framagit.org/zoggy/ocaml-rdf.git"
9bug-reports: "https://framagit.org/zoggy/ocaml-rdf/issues"
10
11build: [
12 ["./configure" "--prefix" prefix]
13 [make "all"]
14]
15
16install: [
17 [make "install"]
18]
19remove: ["ocamlfind" "remove" "rdf"]
20depends: [
21 "ocaml" {>= "4.03.0"}
22 "ocamlfind"
23 "xmlm" {>= "1.2.0"}
24 "sedlex" {>= "1.99.2" & < "2.0"}
25 "menhir" {>= "20151112"}
26 "uuidm" {>= "0.9.6"}
27 "cryptokit" {>= "1.7"}
28 "pcre" {>= "7.0.2"}
29 "yojson" {>= "1.1.8"}
30 "iri" {>= "0.4.0"}
31 "uri" {>= "1.9.1"}
32 "calendar" {>= "2.03.2"}
33 "uutf" {>= "1.0.0"}
34 "jsonm" {>= "1.0.0"}
35]
36depopts: ["mysql" "postgresql" "cohttp" "lwt"]
37conflicts: [
38 "cohttp" {< "0.11.2"}
39 "lwt" {< "2.4.5"}
40 "mysql" {< "1.1.1"}
41]
42synopsis: "Native OCaml implementation of RDF Graphs and Sparql 1.1 Query."
43description: """
44Implemented features
45
46- Three storages available: in memory, in a MySQL or in a Postgresql database,
47- Ability to define your own storages,
48- Transactions,
49- Importing from and exporting to RDF/XML and Turtle formats,
50- Executing Sparql 1.1 queries,
51- HTTP binding of the Sparql protocol, using Lwt."""
52flags: light-uninstall
53url {
54 src:
55 "https://framagit.org/zoggy/ocaml-rdf/-/archive/0.11.0/ocaml-rdf-0.11.0.tar.gz"
56 checksum: [
57 "sha256=e7995bc6362276c64416ede8ee89a14a5368c20ac63eb52e2c0292e07114819b"
58 "md5=0b2e4608bfd2db56294b3a76fb5fe5e9"
59 ]
60}