this repo has no description
1opam-version: "2.0"
2maintainer: "zoggy@bat8.org"
3authors: ["Maxence Guesdon"]
4homepage: "https://www.good-eris.net/stog/"
5
6license: "GPL-3.0-only"
7
8doc: ["https://www.good-eris.net/stog/doc.html"]
9dev-repo: "git+https://framagit.org/zoggy/stog.git"
10bug-reports: "https://framagit.org/zoggy/stog/issues"
11
12tags: ["publication" "xml" "documentation" "blog" "web" "website"]
13
14build: [
15 ["./configure" "--prefix" prefix]
16 [make "all"]
17]
18
19install: [
20 [make "install-lib" "install-share"]
21]
22
23remove: [["ocamlfind" "remove" "stog"]]
24depends: [
25 "ocaml" {>= "4.02.1"}
26 "ocamlfind"
27 "xtmpl" {>= "0.13.0" & < "0.19.0"}
28 "ocf" {>= "0.4.0"}
29 "ocamlnet" {>= "3.6" & != "4.1.9"}
30 "higlo" {>= "0.5"}
31 "ppx_blob" {>= "0.1"}
32 "lwt" {>= "2.5"}
33]
34depopts: [
35 "js_of_ocaml"
36 "xmldiff"
37 "websocket"
38 "ojs-base"
39 "sha"
40]
41conflicts: [
42 "js_of_ocaml" {>= "3.4.0"} ]
43
44synopsis:
45 "A static web site compiler, handling blog posts, or XML document in general."
46description: """
47Main features:
48- generate static XML/HTML documents: easy to deploy, less security problems,
49- handling of blog posts, with dates, topics, keywords and associated RSS feeds,
50- no new syntax,
51- based on a XML rewrite engine allowing to apply substitutions (rewrite rules)
52 on some tags. Some substitutions are pre-defined, and others can be defined
53 in your documents or added by plugins. Content can then be written with
54 semantic tags,
55- support multi-language sites,
56- a lot of predefined functions can be used to handle sectionning, table of
57 contents, verified cross-references, ...,
58- OCaml code can be interpreted at compilation time and the result included in
59 the generated documents, which is nice to write tutorials on OCaml libraries,
60- some plugins ease the inclusion of graphviz graphs, and pictures generated
61 by Aysmptote or LaTeX,
62- ..."""
63flags: light-uninstall
64url {
65 src: "https://framagit.org/zoggy/stog/-/archive/0.16.0/stog-0.16.0.tar.gz"
66 checksum: [
67 "sha256=05df97c7bcf4e434af88f91dfb6697f62f8dc6982e5ec273c8334fc1adc13d2d"
68 "md5=45fa54dc2726a8e3960e7506728bb644"
69 ]
70}
71extra-source "stog.install" {
72 src:
73 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/stog/stog.install.0.16.0"
74 checksum: [
75 "sha256=3c16b29180c3aaeb3469987770b8298a728d9becf321f19cf4fecf042314159b"
76 "md5=dd45a8769ea4d237c8a5945c67192856"
77 ]
78}