this repo has no description
1opam-version: "2.0" 2maintainer: "Christian Lindig <lindig@gmail.com>" 3authors: "Christian Lindig <lindig@gmail.com>" 4homepage: "https://github.com/lindig/lipsum" 5bug-reports: "https://github.com/lindig/lipsum/issues" 6license: "BSD-3-Clause" 7dev-repo: "git+https://github.com/lindig/lipsum.git" 8build: [ 9 [make] 10] 11install: [make "PREFIX=%{prefix}%" "install"] 12remove: [make "PREFIX=%{prefix}%" "remove"] 13depends: [ 14 "ocaml" {>= "4.01.0"} 15 "ocamlfind" 16 "ocamlbuild" {build} 17 "re" 18] 19synopsis: 20 "lipsum - self-contained tool for literate programming in tradition of NoWeb" 21description: """ 22Lipsum is a command-line utility for literate programming. It stands in the 23tradition of [Noweb](http://www.cs.tufts.edu/~nr/noweb/), a popular and 24flexible literate programming system by Norman Ramsey. The idea of literate 25programming is to keep documentation for programmers and program code in 26one file and to arrange it in a way that helps understanding it best. To 27actually compile or run the code it needs to be extracted from the literate 28program and Lipsum is a tool to do this. 29 30Like Noweb, Lipsum employs a minimal markup to arrange documentation and 31code in a file. Also like Noweb, Lipsum is language agnostic and can be 32used for almost any programming language and documentation.""" 33url { 34 src: "https://github.com/lindig/lipsum/archive/v0.2.zip" 35 checksum: [ 36 "sha256=b9cb5977a15d00ad0d16d3f62b8344498776f2f88cf6cfd7104d9e9325a19170" 37 "md5=68080f850882d90c6936b0c1343eb66b" 38 ] 39}