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.17.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" & < "2"} 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.18.0/stog-0.18.0.tar.gz" 54 checksum: [ 55 "sha256=642314dca19f6b2f8f235412d2227ebbc3ce0f05baff43ad9be969677344a344" 56 "md5=014dcec7fabf0beb546ff490ed54b909" 57 ] 58}