• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1;
2; SANE Backend specification file
3;
4; It's basically emacs-lisp --- so ";" indicates comment to end of line.
5; All syntactic elements are keyword tokens, followed by a string or
6;  keyword argument, as specified.
7;
8; ":backend" *must* be specified.
9; All other information is optional (but what good is the file without it?).
10;
11
12:backend "p5"              ; name of backend
13:version "1 (unmaintained)"; version of backend
14:manpage "sane-p5"         ; name of manpage (if it exists)
15:comment "New backend for SANE release 1.0.21, see sane-p5 manpage"
16:url "http://www.sane-project.org/" ; backend's web page
17
18:devicetype :scanner              ; start of a list of devices....
19                                  ; other types:  :stillcam, :vidcam,
20                                  ;               :meta, :api
21
22:mfg "PRIMAX"                     ; name a manufacturer
23:url "http://www.primax.com.tw"
24
25:model "PagePartner"
26:interface "Parport (EPP/ECP)"
27:status :basic
28:comment "Sheetfed scanner, work in gray and color, but uncalibrated scans"
29
30; :comment and :url specifiers are optional after :mfg, :model, :desc,
31;  and at the top-level.
32