This a test repository for the unpac monorepo tool
1description = "File system paths for OCaml"
2version = "%%VERSION_NUM%%"
3requires = "astring"
4archive(byte) = "fpath.cma"
5archive(native) = "fpath.cmxa"
6plugin(byte) = "fpath.cma"
7plugin(native) = "fpath.cmxs"
8exists_if = "fpath.cma fpath.cmxa"
9
10package "top" (
11 directory = "top"
12 description = "The fpath.top library"
13 version = "%%VERSION_NUM%%"
14 requires = "fpath"
15 archive(byte) = "fpath_top.cma"
16 archive(native) = "fpath_top.cmxa"
17 plugin(byte) = "fpath_top.cma"
18 plugin(native) = "fpath_top.cmxs"
19 exists_if = "fpath_top.cma fpath_top.cmxa"
20)