home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / Lotus / Beanmach / DATA1.CAB / Application_Files / bin / ClassPck.ddf < prev    next >
Text File  |  1997-11-05  |  2KB  |  69 lines

  1. ; Template for ClassPack.ddf
  2. ; Copyright 1996, Microsoft Corporation
  3. ; Version 1.1, 30 July 1996
  4.  
  5. ; This file lists all of the files that you want to place on 
  6. ; a user's machine. It should contain all of your classes organized
  7. ; in the correct directory hierarchy, specified by your package 
  8. ; names.
  9.  
  10. ; Leave this.
  11.  
  12. .OPTION EXPLICIT 
  13.  
  14. ;*********************************
  15. ; Insert the name for your cab file here. You will need to
  16. ; use this name in both master.ddf and your inf, so remember your
  17. ; choice.
  18. ;
  19. .Set CabinetNameTemplate=CabFileName.cab
  20. ;*********************************
  21.  
  22. ; Leave these settings.
  23.  
  24. .Set DiskDirectoryTemplate=
  25. .Set Cabinet=on
  26. .Set Compress=on
  27. .Set MaxCabinetSize=0
  28. .Set MaxDiskSize=CDROM
  29.  
  30. ; ***********************
  31. ; This is the main section. You will list the names of all
  32. ; of your classes here, with their full virtual pathnames.
  33. ; You also need to specify each destination directory before you
  34. ; list the files in that directory. We highly recommend that you
  35. ; make all of your packages start with a name that should be unique
  36. ; to you, so that you have your own subdirectory on the user's machine
  37. ; and don't have to worry about having your files written over.
  38. ;
  39. ; For example, say that your classes are
  40. ; Vendor.Applet.class
  41. ; Vendor.Content.ContentContainer.class
  42. ; Vendor.Content.ContentHelper.class
  43. ; Vendor.Util.Loader.class
  44. ;
  45. ; Then this file should read (don't forget to change this!)
  46.  
  47. .Set DestinationDir=Vendor
  48. Vendor\Applet.class
  49.  
  50. .Set DestinationDir=Vendor\Content
  51. Vendor\Content\ContentContainer.class
  52. Vendor\Content\ContentHelper.class
  53.  
  54. .Set DestinationDir=Vendor\Util
  55. Vendor\Util\Loader.class
  56.  
  57. ; Alternatively, if you decide to use a .ZIP file (as explained in the
  58. ; README), you just need to list one file here, without subdirectories.
  59. ; Something like
  60.  
  61. vendor.zip
  62.  
  63. ; will be fine. Be sure to make your name unique, so that other vendors
  64. ; won't overwrite it.
  65.  
  66. ; That's all--you're finished!
  67.  
  68. ; ***********************
  69.