File: pkg.ml

package info (click to toggle)
uutf 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 220 kB
  • sloc: ml: 1,586; makefile: 29; sh: 18
file content (12 lines) | stat: -rwxr-xr-x 332 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 cmdliner = Conf.with_pkg "cmdliner"
let () =
  Pkg.describe "uutf" @@ fun c ->
  let cmdliner = Conf.value c cmdliner in
  Ok [ Pkg.mllib "src/uutf.mllib";
       Pkg.bin ~cond:cmdliner "test/utftrip";
       Pkg.doc "doc/index.mld" ~dst:"odoc-pages/index.mld" ]