blob: 8d7b0605311c8e23c929d4f37422d18f6d919fb6 (
plain)
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
38
39
40
41
42
43
|
;
; SANE Backend specification file
;
; It's basically emacs-lisp --- so ";" indicates comment to end of line.
; All syntactic elements are keyword tokens, followed by a string or
; keyword argument, as specified.
;
; ":backend" *must* be specified.
; All other information is optional (but what good is the file without it?).
;
:backend "coolscan" ; name of backend
:version "0.4.3" ; version of backend
:url "http://andreas.rick.free.fr/sane/" ; backend's web page
:manpage "sane-coolscan"
:devicetype :scanner ; start of a list of devices....
; other types: :stillcam, :vidcam,
; :meta, :api
:mfg "Nikon" ; name a manufacturer
:url "http://www.nikon.com/"
:model "LS-20" ; name models for above-specified mfg.
:interface "SCSI"
:comment "The LS-20 has been replaced by the LS-30"
:status :basic
:model "LS-30" ; name models for above-specified mfg.
:interface "SCSI"
:comment "alpha: only 24/30 bit RGB + 32/40 bit RGBI"
:status :basic
:model "LS-2000" ; name models for above-specified mfg.
:interface "SCSI"
:comment "alpha: only 24/36 bit + RGB 32/48 bit RGBI"
:status :basic
:model "LS-1000"
:interface "SCSI"
:comment "Doesn't support gamma correction"
:status :basic
; :comment and :url specifiers are optional after :mfg, :model, :desc,
; and at the top-level.
|