this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Static web site compiler, able to handle blog posts as well as regular pages or any XML document in general" 4maintainer: "zoggy@bat8.org" 5authors: "Zoggy <zoggy@bat8.org>" 6license: "GPL-3.0-only" 7homepage: "https://www.good-eris.net/stog/" 8doc: "https://www.good-eris.net/stog/doc.html" 9bug-reports: "https://framagit.org/zoggy/stog/issues" 10depends: [ 11 "dune" {>= "2.9"} 12 "ocaml" {>= "4.12.0" & < "4.13"} 13 "dune-build-info" {>= "2.9.1"} 14 "dune-site" {>= "2.9.1"} 15 "fmt" {>= "0.9.0"} 16 "higlo" {= "0.8" } 17 "logs" {>= "0.7.0"} 18 "lwt" {>= "5.4.0"} 19 "lwt_ppx" {>= "2.0.2"} 20 "menhir" {>= "20211128"} 21 "ocf" {>= "0.8.0"} 22 "ocf_ppx" {>= "0.8.0"} 23 "ppx_blob" {>= "0.7.2"} 24 "ptime" {>= "0.8.2"} 25 "uri" {>= "4.2.0"} 26 "uutf" {>= "1.0.0"} 27 "xtmpl" {= "0.19.0"} 28 "xtmpl_ppx" {= "0.19.0"} 29 "odoc" {with-doc} 30] 31build: [ 32 ["dune" "subst"] {dev} 33 [ 34 "dune" 35 "build" 36 "-p" 37 name 38 "-j" 39 jobs 40 "--promote-install-files=false" 41 "@install" 42 "@runtest" {with-test} 43 "@doc" {with-doc} 44 ] 45 ["dune" "install" "-p" name "--create-install-files" name] 46] 47dev-repo: "git+https://framagit.org/zoggy/stog.git" 48url { 49 src: "https://framagit.org/zoggy/stog/-/archive/0.20.0/stog-0.20.0.tar.gz" 50 checksum: [ 51 "md5=2b0da8498e2e425cdbc44ff7ecb2a097" 52 "sha512=ae11b868e2a6d5e92ffffdde04f25ae1595e4bd7c9a6447327764327f17d2641713f01374f14ec9fd52e0ca7e0feb9d85c4fc5913aa49b4d1d73c52427d4263e" 53 ] 54}