-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlipsum.opam
28 lines (27 loc) · 1.19 KB
/
lipsum.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
opam-version: "2.0"
name: "lipsum"
synopsis: "Self-contained tool for literate programming in tradition of NoWeb"
maintainer: "Christian Lindig <[email protected]>"
authors: "Christian Lindig <[email protected]>"
license: "BSD"
homepage: "https://github.com/lindig/lipsum"
bug-reports: "https://github.com/lindig/lipsum/issues"
depends: [
"ocaml"
"dune" {build}
"re"
]
doc: "https://lindig.github.io/lipsum/"
build: ["dune" "build" "-p" "-j" jobs]
dev-repo: "git+https://github.com/lindig/lipsum.git"
description: """
Lipsum is a command-line utility for literate programming. It stands in
the tradition of [Noweb](http://www.cs.tufts.edu/~nr/noweb/), a popular
and flexible literate programming system by Norman Ramsey. The idea of
literate programming is to keep documentation for programmers and
program code in one file and to arrange it in a way that helps
understanding it best. To actually compile or run the code it needs to
be extracted from the literate program and Lipsum is a tool to do this.
Like Noweb, Lipsum employs a minimal markup to arrange documentation and
code in a file. Also like Noweb, Lipsum is language agnostic and can be
used for almost any programming language and documentation."""