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 "umax_pp" ; name of backend 13:version "1 (unmaintained)" ; version of backend 14:manpage "sane-umax_pp" ; name of manpage (if it exists) 15 ; backend's web page 16:url "http://umax1220p.sourceforge.net/" 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.tw/" 24 25; These scanners are known to have the same ASIC family. 26 27:model "Astra 1220P" 28:interface "Parport (EPP/ECP)" 29:status :good 30 31:model "Astra 2000P" 32:interface "Parport (EPP/ECP)" 33:status :good 34 35:model "Astra 1600P" 36:interface "Parport (EPP/ECP)" 37:status :good 38 39:model "Astra 600P" 40:interface "Parport (SPP/ECP)" 41:status :unsupported 42:comment "untested, but should be close to 610P" 43 44:model "Astra 610P" 45:interface "Parport (SPP/ECP)" 46:status :good 47 48:mfg "Hewlett-Packard" 49 50:model "Scanjet 3200C" 51:interface "Parport (EPP/ECP)" 52:status :good 53:comment "works (relabelled 1220P and 2000P)" 54 55:mfg "Genius" 56 57:model "ColorPage-Life Pro" 58:interface "Parport (EPP/ECP)" 59:status :good 60:comment "works (relabelled 1220P and 2000P)" 61 62; :comment and :url specifiers are optional after :mfg, :model, :desc, 63; and at the top-level. 64