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 "canon630u"                ; name of backend
13:manpage "sane-canon630u"
14:version "0.1 (unmaintained)"       ; version of backend
15;:status :beta
16:url "http://canon-fb630u.sourceforge.net/" ; backend home page
17
18:devicetype :scanner              ; start of a list of devices....
19                                  ; other types:  :stillcam, :vidcam,
20                                  ;               :meta, :api
21
22:mfg "Canon"                    ; name a manufacturer
23:url "http://www.canon.com/"
24:model "CanoScan fb630u"           ; name models for above-specified mfg.
25:interface "USB"
26:usbid "0x04a9" "0x2204"
27:comment "OK"
28:status :good
29
30:model "CanoScan fb636u"           ; name models for above-specified mfg.
31:interface "USB"
32:usbid "0x04a9" "0x2204"
33:status :good
34:comment "OK"
35
36; :comment and :url specifiers are optional after :mfg, :model, :desc,
37;  and at the top-level.
38