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; See doc/descriptions.txt for details. 12 13:backend "lhii" ; name of backend 14;:version "0.42" ; version of backend (or "unmaintained") 15;:manpage "sane-template" ; name of manpage (if it exists) 16:url "http://www.sane-project.org/backends/lhii/lhii-v0.2.tgz" ; backend's web page 17:comment "This backend is for old handscanners with proprietary adapter cards. You also need a kernel driver. You may find such drivers at that page: http://www.willamowius.de/scanner.html ." 18 ; comment about the backend 19 20:devicetype :scanner ; start of a list of devices.... 21 ; other types: :stillcam, :vidcam, 22 ; :meta, :api 23 24:mfg "Mustek" ; name a manufacturer 25:comment "Other models may also be supported." 26 27:model "CG-6000" ; name models for above-specified mfg. 28:status :untested ; :minimal, :basic, :good, :complete 29 ; :untested, or :unsupported 30:interface "Proprietary" ; interface type of the device: 31 ; "SCSI", "USB", "Parport (EPP)", 32 ; "Parport (SPP)", "Parport (ECP)", 33 ; "Serial port", "IEEE-1394", "JetDirect", 34 ; or "Proprietary". 35:url "http://www.sane-project.org/backends/lhii/gi1904-v0.2.tgz" ; model's URL 36:comment "Old handscanner. Hasn't been tested for a long time but once worked. See link for the linux kernel driver that's necessary to run the scanner." ; comment about the model 37 38 39; :comment and :url specifiers are optional after :mfg, :model, :desc, 40; and at the top-level. 41 42; :status specifier is optional after :model and at the top-level 43