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" {>= "5.0.0"} 13 "dune-build-info" {>= "2.9.1"} 14 "dune-site" {>= "2.9.1"} 15 "fmt" {>= "0.9.0"} 16 "higlo" {>= "0.9"} 17 "logs" {>= "0.7.0"} 18 "lwt" {>= "5.7.0"} 19 "lwt_ppx" {>= "2.1.0"} 20 "menhir" {>= "20231231"} 21 "ocf" {>= "0.8.0"} 22 "ocf_ppx" {>= "0.8.0"} 23 "ppx_blob" {>= "0.7.2"} 24 "ptime" {>= "1.1.0"} 25 "uri" {>= "4.4.0"} 26 "uutf" {>= "1.0.3"} 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] 47conflicts: [ "ocaml-option-bytecode-only" ] 48dev-repo: "git+https://framagit.org/zoggy/stog.git" 49url { 50 src: "https://framagit.org/zoggy/stog/-/archive/1.0.0/stog-1.0.0.tar.gz" 51 checksum: [ 52 "md5=e9ce23a296e6309688a2d459fcbf9320" 53 "sha512=eeffb8957436879409d66138941770d5a7941cbb89d138f78b6ab35d4b8c198886e559ec4af026256b03da732f897306eda59fcd5b93ece5907a144321419d4e" 54 ] 55}