home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / varie / popupmenuuser / install next >
Text File  |  1997-06-24  |  609b  |  35 lines

  1. ;
  2. ; $VER: PopupMenuUserInstaller V1.1 (24.6.97)
  3. ; Copyright ©1996-1997 Henrik Isaksson
  4. ;
  5.  
  6. (copylib
  7.     (prompt        "Installing the popupmenu.library...")
  8.     (help        @copylib-help)
  9.     (source        "popupmenu.library")
  10.     (dest        "LIBS:")
  11.     (optional    force askuser)
  12.     (confirm)
  13. )
  14.  
  15. (set #prefdest (askdir
  16.     (prompt "Where do you want me to install the Prefs editor?")
  17.     (help " ")
  18.     (newpath)
  19.     (default "SYS:Prefs/")
  20. ))
  21.  
  22.  
  23. (copyfiles
  24.     (prompt        "Installing the prefs editor... (pre-release)")
  25.     (help        @copyfiles-help)
  26.     (source        "prefs")
  27.     (dest        #prefdest)
  28.     (optional    force askuser)
  29.     (pattern     "#?")
  30. )
  31.  
  32. (set @default-dest "SYS:")
  33.  
  34. (exit)
  35.