~ubuntu-branches/debian/sid/ppx-deriving-yojson/sid

« back to all changes in this revision

Viewing changes to pkg/build.ml

  • Committer: Package Import Robot
  • Author(s): Ralf Treinen
  • Date: 2018-03-28 21:56:16 UTC
  • Revision ID: package-import@ubuntu.com-20180328215616-xzfykdl8ls43ydi6
Tags: upstream-3.1
ImportĀ upstreamĀ versionĀ 3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env ocaml
 
2
#directory "pkg"
 
3
#use "topkg.ml"
 
4
 
 
5
let ocamlbuild =
 
6
  "ocamlbuild -use-ocamlfind -classic-display -plugin-tag 'package(cppo_ocamlbuild)'"
 
7
 
 
8
let () =
 
9
  Pkg.describe "ppx_deriving_yojson" ~builder:(`Other (ocamlbuild, "_build")) [
 
10
    Pkg.lib "pkg/META";
 
11
    Pkg.lib ~exts:Exts.library "src/ppx_deriving_yojson";
 
12
    Pkg.lib ~exts:Exts.module_library "src/ppx_deriving_yojson_runtime";
 
13
    Pkg.doc "README.md";
 
14
    Pkg.doc "LICENSE.txt";
 
15
    Pkg.doc "CHANGELOG.md"; ]