aboutsummaryrefslogtreecommitdiffstats
path: root/src/letsqlite.opam
blob: 729ecb0f6ff8250bda9e3c7f8a63f339c2c1b858 (plain) (blame)
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Simple monadic Sqlite3 wrapper"
description: "Simple monadic Sqlite3 wrapper"
maintainer: ["code@mcgoron.com"]
authors: ["Peter McGoron"]
license: "CC0-1.0"
homepage: "https://software.mcgoron.com/peter/letsqlite"
bug-reports: "code@mcgoron.com"
depends: [
  "dune" {>= "2.9" & >= "2.9"}
  "sqlite3" {>= "5.0.3"}
  "ppx_inline_test" {>= "0.14.1"}
  "odoc" {with-doc}
]
build: [
  ["dune" "subst"] {dev}
  [
    "dune"
    "build"
    "-p"
    name
    "-j"
    jobs
    "--promote-install-files=false"
    "@install"
    "@runtest" {with-test}
    "@doc" {with-doc}
  ]
  ["dune" "install" "-p" name "--create-install-files" name]
]