File: pkg.ml

package info (click to toggle)
ocaml-rresult 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: ml: 329; makefile: 15
file content (12 lines) | stat: -rwxr-xr-x 351 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ocaml
#use "topfind";;
#require "topkg"
open Topkg

let () =
  Pkg.describe "rresult" @@ fun c ->
  Ok [ Pkg.mllib ~api:["Rresult"] "src/rresult.mllib";
       Pkg.mllib ~api:[] "src/rresult_top.mllib";
       Pkg.lib "src/rresult_top_init.ml";
       Pkg.doc "doc/index.mld" ~dst:"odoc-pages/index.mld";
       Pkg.test "test/test"; ]