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"] 15remove: ["ocamlfind" "remove" "stog"] 16depends: [ 17 "ocaml" {>= "4.03.0"} 18 "ocamlfind" 19 "xtmpl" {>= "0.16.0" & < "0.19.0"} 20 "ocf" {>= "0.5.0"} 21 "higlo" {>= "0.6"} 22 "ppx_blob" {>= "0.1"} 23 "ptime" {>= "0.8.2"} 24 "uri" {>= "1.9.2"} 25 "omd" {>= "1.3.0"} 26 "lwt" {>= "2.5"} 27 "uutf" {>= "1.0.0"} 28] 29depopts: ["js_of_ocaml" "xmldiff" "websocket" "ojs-base" "cryptokit"] 30conflicts: [ 31 "js_of_ocaml" {>= "3.4.0"} ] 32synopsis: 33 "A static web site compiler, handling blog posts, or XML document in general." 34description: """ 35Main features: 36- generate static XML/HTML documents: easy to deploy, less security problems, 37- handling of blog posts, with dates, topics, keywords and associated RSS feeds, 38- no new syntax, 39- based on a XML rewrite engine allowing to apply substitutions (rewrite rules) 40 on some tags. Some substitutions are pre-defined, and others can be defined 41 in your documents or added by plugins. Content can then be written with 42 semantic tags, 43- support multi-language sites, 44- a lot of predefined functions can be used to handle sectionning, table of 45 contents, verified cross-references, ..., 46- OCaml code can be interpreted at compilation time and the result included in 47 the generated documents, which is nice to write tutorials on OCaml libraries, 48- some plugins ease the inclusion of graphviz graphs, and pictures generated 49 by Aysmptote or LaTeX, 50- ...""" 51flags: light-uninstall 52url { 53 src: "https://framagit.org/zoggy/stog/-/archive/0.17.0/stog-0.17.0.tar.gz" 54 checksum: [ 55 "sha256=ebcd99825dc23cad4a2db7ba4654ec9008e07541a87eee6469f2fc80f09d3650" 56 "md5=c094899fafc06fb55e507c06ee83c002" 57 ] 58} 59extra-source "stog.install" { 60 src: 61 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/stog/stog.install.0.17.0" 62 checksum: [ 63 "sha256=3c16b29180c3aaeb3469987770b8298a728d9becf321f19cf4fecf042314159b" 64 "md5=dd45a8769ea4d237c8a5945c67192856" 65 ] 66}