home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / grafica / svconvert15 / install next >
Text File  |  2000-01-22  |  3KB  |  98 lines

  1. ; Install script
  2. ;
  3. ; Copyright by Wayne Newark, 1999
  4.  
  5. (message
  6.    "\nInstalls SVConvert.dopus5 © Wayne Newark."
  7.    "\n\nThe DOpus script can be used to "
  8.    "convert selected pictures to an alternative format "
  9.    "by running the program SViewNG, SViewII or SViewIV "
  10.    "which were written by Andreas Kleinert."
  11.    "\n\nRead the file SVConvert.readme for further information."
  12.    "\n\nTo use this script you will need to be a"
  13.    "\nregistered user of SViewNG, SViewII or SViewIV."
  14. )
  15.  
  16. (set ARexx-dest "DOpus5:ARexx")
  17. (set catalog-dest "DOpus5:catalogs")
  18. (set menu-dest "DOpus5:buttons")
  19. (set Libs-dest "Libs:")
  20.  
  21. ;(set ARexx-dest "ram:")
  22. ;(set catalog-dest "ram:")
  23. ;(set menu-dest "ram:")
  24. ;(set Libs-dest "ram:")
  25.  
  26. (message "\nInstalling ARexx script\n\n"
  27.     "\nThis step installs the SVConvert.dopus5 script"
  28.     "\nand some associated files."
  29. )
  30.  
  31. (copyfiles (prompt "\n\nSVConvert.dopus5")
  32.          (help @copyfiles-help)
  33.          (confirm "expert")
  34.          (source "SVConvert.dopus5")
  35.          (dest Arexx-dest)
  36.          (optional "askuser" "oknodelete")
  37. )
  38.  
  39. (copyfiles (prompt "\n\nCatalog File(s)" )
  40.          (help @copyfiles-help)
  41.          (confirm "expert")
  42.          (source "catalogs")
  43.          (all)
  44.          (dest catalog-dest)
  45.          (optional "oknodelete" "askuser")
  46. )
  47.  
  48. (copyfiles (prompt "\n\nExample Start Menu" )
  49.          (help @copyfiles-help)
  50.          (confirm "expert")
  51.          (source "SViewII.menu")
  52.          (dest menu-dest)
  53.          (optional "oknodelete" "askuser")
  54. )
  55.  
  56. (copyfiles (prompt "\n\nExample Start Menu (German)" )
  57.          (help @copyfiles-help)
  58.          (confirm "expert")
  59.          (source "SViewII_de.menu")
  60.          (dest menu-dest)
  61.          (optional "oknodelete" "askuser")
  62. )
  63.  
  64. (copyfiles (prompt "\n\nExample Button Bank" )
  65.          (help @copyfiles-help)
  66.          (confirm "expert")
  67.          (source "SViewII.buttons")
  68.          (dest menu-dest)
  69.          (optional "oknodelete" "askuser")
  70. )
  71.  
  72. (message "\nInstalling Libraries\n"
  73.     "\nThe script requires the following libraries, which"
  74.     "\nwill now be installed onto your machine:         \n"
  75.     "\n          triton.library"
  76.     "\n          tritonrexx.library"
  77. )
  78.  
  79. (copylib (prompt "\n\ntriton Library" )
  80.          (help @copyfiles-help)
  81.          (confirm "expert")
  82.          (source "libs/triton.library")
  83.          (dest Libs-dest)
  84.          (optional "oknodelete" "askuser")
  85. )
  86.  
  87. (copylib (prompt "\n\ntritonrexx Library" )
  88.          (help @copyfiles-help)
  89.          (confirm "expert")
  90.          (source "libs/tritonrexx.library")
  91.          (dest Libs-dest)
  92.          (optional "oknodelete" "askuser")
  93. )
  94.  
  95. (exit
  96.    (quiet)
  97. )
  98.