forked from ocaml-community/omd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_oasis
59 lines (51 loc) · 1.73 KB
/
_oasis
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*-conf-*-
OASISFormat: 0.3
Name: omd
Version: 1.2.0
Synopsis: A Markdown frontend in pure OCaml.
Description: This Markdown library is implemented using only pure OCaml
(including I/O operations provided by the standard OCaml compiler distribution).
OMD is meant to be as faithful as possible to the original Markdown.
Additionally, OMD implements a few Github markdown features, an extension mechanism,
and a few other features.
Note that the opam package installs both the OMD library and the command line tool `omd`.
Note that The library interface of 1.0.x is only partially compatible with 0.9.x.
Authors: Philippe Wang <philippe.wang@gmail.com>
Maintainers: Philippe Wang <philippe.wang@gmail.com>
License: ISC
Homepage: https://github.com/ocaml/omd
Plugins: META (0.3), StdFiles (0.3)
Library "omd"
Path: src
BuildTools: ocamlbuild
BuildDepends: bigarray
Modules: Omd_utils, Omd_representation, Omd_backend, Omd_lexer, Omd_parser, Omd
Executable "omd"
Path: src
BuildTools: ocamlbuild
MainIs: omd_main.ml
BuildDepends: omd
CompiledObject: best
SourceRepository master
Type: git
Location: https://github.com/ocaml/omd.git
Browser: https://github.com/ocaml/omd
Executable "test_cow"
Path: tests/cow
BuildTools: ocamlbuild
MainIs: test.ml
BuildDepends: omd
CompiledObject: best
Test "cow"
Type: Custom (0.0.1)
Command: $test_cow
Executable "test_spec"
Path: tests
BuildTools: ocamlbuild
MainIs: test_spec.ml
BuildDepends: omd
CompiledObject: best
Test "spec"
Type: Custom (0.0.1)
Command: $test_spec
# N.B. If the number of lines in this file changes, don't forget to adapt the Makefile!