-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlpd.opam
More file actions
26 lines (26 loc) · 904 Bytes
/
Copy pathlpd.opam
File metadata and controls
26 lines (26 loc) · 904 Bytes
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
opam-version: "2.0"
maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
authors: [ "Christophe Troestler <Christophe.Troestler@umons.ac.be>" ]
tags: ["lpd" "print" "cups"]
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/Chris00/lpd"
dev-repo: "git+https://github.com/Chris00/lpd.git"
bug-reports: "https://github.com/Chris00/lpd/issues"
doc: "https://Chris00.github.io/lpd/doc"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml"
"dune"
"base-bytes"
"base-unix"
]
synopsis: "A Line Printer Daemon (LPD) server library written entirely in OCaml"
description: """
Lpd is a Line Printer Daemon compliant with RFC 1179 written entirely
in OCaml. It allows to define your own actions for LPD events. An
example of a spooler that prints jobs on win32 machines (through
GSPRINT) is provided.
"""