File: opam

package info (click to toggle)
sks 1.1.6%2Bgit20210302.c3ba6d5a-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 136,244 kB
  • sloc: ml: 15,189; ansic: 1,061; sh: 366; makefile: 331; python: 25
file content (37 lines) | stat: -rw-r--r-- 985 bytes parent folder | download | duplicates (3)
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
32
33
34
35
36
37
opam-version: "2.0"
name: "sks"
maintainer: "ygrek@autistici.org"
homepage: "https://github.com/SKS-Keyserver/sks-keyserver"
synopsis: "OpenPGP keyserver"
license: "GPL2"
authors: [
  "Yaron Minsky"
  "Kristian Fiskerstrand"
  "John Clizbe"
]
doc: [ "https://github.com/SKS-Keyserver/sks-keyserver/wiki" ]
bug-reports: "https://github.com/SKS-Keyserver/sks-keyserver/issues"
dev-repo: "git+https://github.com/SKS-Keyserver/sks-keyserver"
build: [
  [make "dep"]
  [make "LIBDB=-ldb-5.3" "all"] { os != "macos" }
  [make "LIBDB=-ldb-4.8" "BDBINCLUDE=-I/usr/local/opt/berkeley-db@4/include" "BDBLIB=-L/usr/local/opt/berkeley-db@4/lib" "all"] { os = "macos" }
  [make "doc"] {with-doc}
]
#install: [
#  [make "PREFIX=%{prefix}%" "install"]
#]
run-test: [
  ["./sks" "unit_test"]
]
depends: [
  "ocamlfind" {build}
  "base-unix"
  "base-bytes"
  "cryptokit"
  "num"
]
depexts: [
  ["libdb5.3-dev"] {os-family = "debian"}
  ["berkeley-db@4"] {os-distribution = "homebrew" & os = "macos"}
]