this repo has no description
1opam-version: "2.0"
2maintainer: "zoggy@bat8.org"
3authors: "Maxence Guesdon"
4homepage: "https://www.good-eris.net/stog/"
5bug-reports: "https://framagit.org/zoggy/stog/issues"
6license: "GPL-3.0-only"
7doc: "https://www.good-eris.net/stog/doc.html"
8tags: ["publication" "xml" "documentation" "blog" "web" "website"]
9dev-repo: "git+https://framagit.org/zoggy/stog.git"
10build: [
11 ["./configure" "--prefix" prefix]
12 [make "all"]
13]
14install: [make "install-lib" "install-share" "install-bin"]
15depends: [
16 "ocaml" {>= "4.03.0"}
17 "ocamlfind"
18 "xtmpl" {>= "0.17.0" & < "0.19.0"}
19 "ocf" {>= "0.5.0"}
20 "higlo" {>= "0.6"}
21 "ppx_blob" {>= "0.1"}
22 "ptime" {>= "0.8.2"}
23 "uri" {>= "1.9.2"}
24 "omd" {>= "1.3.0" & < "2"}
25 "lwt" {>= "2.5"}
26 "uutf" {>= "1.0.0"}
27]
28depopts: ["js_of_ocaml" "xmldiff" "websocket" "ojs-base" "cryptokit"]
29conflicts: [
30 "js_of_ocaml" {>= "3.4.0"} ]
31synopsis:
32 "A static web site compiler, handling blog posts, or XML document in general."
33description: """
34Main features:
35- generate static XML/HTML documents: easy to deploy, less security problems,
36- handling of blog posts, with dates, topics, keywords and associated RSS feeds,
37- no new syntax,
38- based on a XML rewrite engine allowing to apply substitutions (rewrite rules)
39 on some tags. Some substitutions are pre-defined, and others can be defined
40 in your documents or added by plugins. Content can then be written with
41 semantic tags,
42- support multi-language sites,
43- a lot of predefined functions can be used to handle sectionning, table of
44 contents, verified cross-references, ...,
45- OCaml code can be interpreted at compilation time and the result included in
46 the generated documents, which is nice to write tutorials on OCaml libraries,
47- some plugins ease the inclusion of graphviz graphs, and pictures generated
48 by Aysmptote or LaTeX,
49- ..."""
50url {
51 src: "https://framagit.org/zoggy/stog/-/archive/0.18.0/stog-0.18.0.tar.gz"
52 checksum: [
53 "sha256=642314dca19f6b2f8f235412d2227ebbc3ce0f05baff43ad9be969677344a344"
54 "md5=014dcec7fabf0beb546ff490ed54b909"
55 ]
56}