Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
lpd/lpd.opam
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (26 sloc)
904 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
""" |