• 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 "umax1220u"              ; name of backend
13:version "unmaintained"                  ; version of backend
14;:status :stable                   ; :alpha, :beta, :stable, :new
15:manpage "sane-umax1220u"         ; name of manpage (if it exists)
16:url "http://sourceforge.net/projects/umax1220u-sane" ; 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 "UMAX"                       ; name a manufacturer
23:url "http://www.umax.com/"
24
25:model "Astra 1220U"        ; name models for above-specified mfg.
26:interface "USB"
27:usbid "0x1606" "0x0010"
28:status :good
29
30:model "Astra 1600U"
31:interface "USB"
32:usbid "0x1606" "0x0030"
33:status :good
34
35:model "Astra 2000U"
36:interface "USB"
37:usbid "0x1606" "0x0030"
38:status :good
39
40:model "Astra 2100U"
41:interface "USB"
42:usbid "0x1606" "0x0130"
43:status :good
44
45
46; :comment and :url specifiers are optional after :mfg, :model, :desc,
47;  and at the top-level.
48