-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscirep.opam
43 lines (41 loc) · 1.08 KB
/
scirep.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Generate a webpage with mathematical formulae, OCaml output and graphics from markdown"
description: """
This is a quick hack to convert a Markdown file containing LaTeX-style
math formulas and OCaml code to an HTML page. The OCaml code gets
evaluated and the output is printed. Graphical outputs can also be
integrated to the page. See test.md for an example.
scirep builds on the following awesome libraries: omd, vg, higlo and
core. It also borrows quite some code from makmash and stog.
"""
maintainer: ["[email protected]"]
authors: ["Philippe Veber"]
license: "CeCILL-B"
homepage: "https://github.com/pveber/scirep/"
bug-reports: "https://github.com/pveber/scirep/issues"
depends: [
"dune" {>= "2.4"}
"compiler-libs"
"core_kernel"
"ezxmlm"
"omd"
"ppx_blob"
"vg"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/pveber/scirep.git"