home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / dwnsrt64.zip / COMPRESS.DWN next >
Text File  |  1997-11-22  |  5KB  |  115 lines

  1. ;
  2. ; COMPRESS.DWN for DOWNSORT by Rob Hamerling
  3. ;
  4. ; This is a modified version of the 'standard' COMPRESS.CFG such as delivered
  5. ; with Maximus and Squish. See for a complete and annotated version the
  6. ; original in the Maximus and/or Squish software packages.
  7. ;
  8. ; This file is dedicated for use by Downsort for the import of File_Id.Diz.
  9. ; 'Dedicated' means that it is optimized for use by Downsort.
  10. ; But the original might be used as well, only some parameter specification
  11. ; may be not that efficient for use with Downsort, and some may cause
  12. ; failure of extracting File_Id.Diz.
  13. ;
  14. ; Main differences with the original Compress.Cfg:
  15. ;
  16. ; - Only Extract operations are specified, since this is the only type
  17. ;   of operation used by Downsort
  18. ; - All parameters are optimized for one task: extract File_Id.Diz
  19. ; - For each unarchiver the version is indicated for which the parameters
  20. ;   are appropriate. Other versions may need different parameters.
  21. ;
  22. ; Some special notes with regard to unarchivers for Downsort:
  23. ;
  24. ; For performance reasons Downsort calls the unarchiver directly (not via
  25. ; the command shell).This means for example that under OS/2 you should
  26. ; not specify a DOS unarchive program, and vice versa. It simply does not
  27. ; work! The OS/2 version of Downsort checks for callability and if the
  28. ; specified unarchiver is not callable (or not found!) it ignores the
  29. ; corresponding archive type for extraction of File_ID.Diz.
  30. ; The DOS-version of Downsort has no check.
  31. ;
  32. ; Some reasons why importing of File_ID.Diz by Downsort may not work:
  33. ; - The archive does not contain a file File_Id.Diz.
  34. ; - The unarchiver is of a lower, incompatible version than the archiver
  35. ;   with which the archive was built.
  36. ;   Use always the most recent version of UNarchivers.
  37. ; - The file is wrongly recognized as an archive of a different type.
  38. ;   It may help if you change the specification sequence in Compress.Dwn.
  39. ; - Wrong parameter specifications in Compress.Dwn.
  40. ;   Note: Normally you want NOT to overwrite a newer file. But in this
  41. ;   case only File_Id.Diz will be extracted to the current directory.
  42. ;   So it is no problem to overwrite a left over from a previous extract!
  43. ;   Not always will an appropriate error message appear!
  44. ; - The archive program cannot be called by Downsort, see above.
  45. ; - Most unlikely (but you never know) a bug in Downsort!
  46.  
  47. ; ----------------------------------------------------------
  48. ; Note: The parameters below are for the mentioned versions.
  49. ;       You may need to apply changes for your unarchivers.
  50.  
  51. ; ----------------------------------------------------------
  52. ; DOS  - Phil Katz's PKunzip 2.04g
  53. ; OS/2 - PKWare's PKZIP version 2.50  (or InfoZip's UNZIP version 5.20)
  54.  
  55. Archiver ZIP
  56.          Ident      0,504b0304                      ; "PK^c^d"
  57. DOS      Extract    pkunzip -e -o %a %f
  58. ; OS2      Extract    unzip -qqCjos %a %f
  59. OS2      Extract    pkzip -extract -silent -nozipext -dir=none  %a  %f
  60. End      Archiver
  61.  
  62. ; ----------------------------------------------------------
  63. ; DOS  - Haruyasu Yoshizaki's LHARC version 1.13
  64. ; OS/2 - Peter Fitzsimmons' LH version 2.22
  65.  
  66. Archiver LHarc
  67.          Ident      2,2d6c68                        ; "-lh"
  68. DOS      Extract    lharc x -c -m -n %a %f
  69. OS2      Extract    lh32 x %a %f /o
  70. End      Archiver
  71.  
  72. ; ----------------------------------------------------------
  73. ; Eugene Roshal's UNRAR version 2.00
  74.  
  75. Archiver RAR
  76.          Ident      0,526172211a0700                ; "Rar!^Z^G"
  77. DOS      Extract    unrar e -c- -o+ -y %a %f
  78. OS2      Extract    unrar2 e -c- -o+ -y %a %f
  79. End      Archiver
  80.  
  81. ; ----------------------------------------------------------
  82. ; Rahul Dhesi's ZOO version 2.1
  83. ; Kai Uwe Rommel's 32-bits variant of version 2.1 for OS/2
  84.  
  85. Archiver ZOO
  86.          Ident      0,5a4f4f                        ; "ZOO"
  87. DOS      Extract    zoo eq:OS %a %f
  88. OS2      Extract    zoo2 eq:OS %a %f
  89. End      Archiver
  90.  
  91. ; ----------------------------------------------------------
  92. ; DOS  - Robert Jung's ARJ version 2.41a
  93. ; OS/2 - Kerry Flint's variant of Robert Jung's UNARJ2 2.41.kkf.a
  94.  
  95. Archiver ARJ
  96.          Ident      0,60ea
  97. DOS      Extract    arj e -c -e -y %a %f
  98. OS2      Extract    unarj2 e %a %f
  99. End      Archiver
  100.  
  101. ; ----------------------------------------------------------
  102. ; DOS  - Phil Katz's PKUNPAK version ??
  103. ; OS/2 - System Enhancement Associates'  ARC2 version 6.00
  104.  
  105. Archiver ARC
  106.          Ident      0,1a
  107. DOS      Extract    pkunpak /r %a %f
  108. OS2      Extract    arc2 eno %a %f
  109. End      Archiver
  110.  
  111.  
  112. ; ----------------------------------------------------------
  113. ; End of modified Compress.Dwn for DOWNSORT by Rob Hamerling
  114.  
  115.