home *** CD-ROM | disk | FTP | other *** search
- ; These are the compression program definitions. The NAME is the archiver
- ; name as you want the user to see it, the Extension is the normal file
- ; extension by which files of that type are known. The ADD and EXTRACT
- ; commands must include the full path and .EXE or .COM extension in order
- ; to work. Since the compression is (in this version) only used for QWK
- ; processing, the ADD command should (ideally) specify "move"ing files
- ; into the archive rather than simply adding them, and the EXTRACT
- ; command should (definitely!) specify overwriting existing files.
- ; The ID bytes are as follows: the fist numeric parameter is the number of
- ; bytes from the first one where we are to find a string of bytes equal to
- ; the remaining specified bytes. 0 means the first byte. -1 means the last
- ; byte in the file, -2 means the second to last and so on. The remaining
- ; bytes are what the BBS searches for to identify the file type. A number
- ; of known archiver IDs are included in this sample file.
- ;
- ; You can specify up to 8 bytes to search for the ID. Byte values are
- ; in vanilla decimal, no hex here!
- ;
- ; There can be up to 16 compression programs defined, from 1 to 16.
- ;
-
- compress 1
- name PKWare's PKZip
- extension ZIP
- add c:\bin\pkzip.exe -m %a %f
- extract c:\bin\pkunzip.exe -oe %a %f
- id 0 80 75 03 04
- end
-
- compress 2
- name PKWare's PKZip - Maximum Compression!
- extension ZIP
- add c:\bin\pkzip.exe -ex -m %a %f
- extract c:\bin\pkunzip.exe -oe %a %f
- id 0 80 75 03 04
- end
-
- compress 3
- name Robert K. Jung's ARJ
- extension ARJ
- add c:\bin\arj.exe m %a %f -m4
- extract c:\bin\arj.exe e %a %f -y
- id 0 96 234
- end
-
-
- compress 4
- name Haruyasu Yoshizaki's LHarc
- extension LZH
- add c:\bin\lha.exe a /m %a %f
- extract c:\bin\lha.exe e %a %f
- id 2 45 108 104
- end
-
- compress 5
- name NoGate's PAK
- extension PAK
- add c:\bin\pak.exe a %a %f
- extract c:\bin\pak.exe e /wa %a %f
- id -2 254
- end
-
- compress 6
- name Phil Katz's PKPAK/PKARC (or SEA ARC)
- extension ARC
- add c:\bin\pkpak.exe -oct a %a %f
- extract c:\bin\pkunpak.exe /r %a %f
- id 0 26
- end
-
- compress 7
- name Rahul Dhesi's ZOO
- extension ZOO
- add c:\bin\zoo.exe -m %a %f
- extract c:\bin\zoo.exe -e:O %a %f
- id 0 90 79 79
- end
-
-