home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / CDRom / PET-BURN.DMS / in.adf / Install_BurnIt < prev    next >
Encoding:
Text File  |  1997-05-22  |  4.7 KB  |  280 lines

  1. ;
  2. ; $VER: Install BurnIt V1.12 ©1996/97
  3. ; This Install-script contains to BurnIt V1.12 ©1997 by DnS
  4. ;
  5. (if (= (exists "Env:Language") 1)
  6.     ; GetEnv reports "String too long" if the variable doesn't exist! :(
  7.     (set @language (getenv "language"))
  8. )
  9.  
  10. ;**************************************************************************
  11. ; English Installation
  12.  
  13. (set default-lang 1)
  14.  
  15. (set #bad-kick
  16.     "You must have AmigaOS Release 3.0 or newer to use BurnIt."
  17. )
  18.  
  19. (set #bad-cpu
  20.     "You must have a 68020 CPU or biger to use BurnIt."
  21. )
  22.  
  23. (set #welcome
  24.     (cat
  25.         "\n\n\nWelcome to the BurnIt installation.\n\n"
  26.         "   BurnIt ©1997, DnS. registered to Petrified MSK"
  27.     )
  28. )
  29.  
  30. (set #install-parts "Please select the parts you wish to install")
  31.  
  32. (set #item-BurnIt "BurnIt")
  33.  
  34. (set #item-BurnIt-guide "BurnIt.guide")
  35.  
  36. (set #item-locale "Translations")
  37.  
  38. (set #where-BurnIt
  39.     (cat
  40.         "Where do you wish to install BurnIt.\n The directory 'BurnIt' will be created if it is not there."
  41.     )
  42. )
  43.  
  44. (set #which-language "Which languages should be installed?")
  45.  
  46. (set #copy "Copying %s to %s...")
  47.  
  48. (set #help "no help available...")
  49.  
  50. ;**************************************************************************
  51. ; Deutsche Installation
  52.  
  53. (if (= @language "deutsch")
  54.     (
  55.         (set default-lang 2)
  56.  
  57.         (set #bad-kick
  58.             (cat
  59.                 "Tut mir Leid!\n"
  60.                 "Aber Sie müßen AmigaOS Release 3.0 oder neur haben für BurnIt."
  61.             )
  62.         )
  63.         (set #bad-cpu
  64.             (cat
  65.                 "Tut mir Leid!\n"
  66.                 "Aber Sie müßen eine 68020 CPU oder größer haben für BurnIt."
  67.             )
  68.         )
  69.         (set #welcome
  70.             (cat
  71.                 "\n\n\nWillkommen zu der Installation von BurnIt.\n\n"
  72.                 "BurnIt ©1997 DnS. Registred to PETRIFIED MSK"
  73.             )
  74.         )
  75.  
  76.         (set #install-parts "Wählen Sie bitte die Teile, die Sie installieren wollen.")
  77.  
  78.         (set #item-BurnIt "BurnIt")
  79.  
  80.         (set #item-BurnIt-guide "BurnIt.guide")
  81.  
  82.         (set #item-locale "Kataloge")
  83.  
  84.         (set #where-BurnIt "Wo wollen sie BurnIt installieren ?\n Ein Verzeichnis 'BurnIt' wird erstellt.")
  85.  
  86.         (set #which-language "Welche Sprachen sollen installiert werden?")
  87.  
  88.         (set #copy "Kopiere %s nach %s...")
  89.  
  90.         (set #help "Keine Hilfe verfügbar...")
  91.  
  92.         
  93.     )
  94. )
  95.  
  96. ;**************************************************************************
  97. ; the installaion script
  98.  
  99. (set @default-dest "")
  100.  
  101. ; Check Kickstart version. Exit if not at least 3.0
  102. (if (< (/ (getversion) 65536) 39)
  103.         (abort #bad-kick)
  104. )
  105.  
  106. ; Check CPU. Exit if < 60020
  107. (if (patmatch "68020" (database "cpu"))
  108.         (abort #bad-cpu)
  109. )
  110.  
  111. (message #welcome)
  112.  
  113. (welcome)
  114.  
  115. (set install-files
  116.     (askoptions
  117.         (prompt #install-parts)
  118.         (help   @askoptions-help)
  119.         (choices
  120.             #item-BurnIt
  121.             #item-BurnIt-guide
  122.             #item-locale
  123.         )
  124.         (default 7)
  125.     )
  126. )
  127.  
  128. (if (IN install-files 0)
  129.     (set BurnIt-dest
  130.         (askdir
  131.             (prompt  #where-BurnIt)
  132.             (help    @askdir-help)
  133.             (default "Work:")
  134.         )
  135.     )
  136. )
  137.  
  138. (set where BurnIt-dest)
  139.  
  140. (if
  141.     (<
  142.         (exists
  143.             (tackon BurnIt-dest "BurnIt")
  144.         )
  145.     2)
  146.     (makedir
  147.         (tackon BurnIt-dest "BurnIt")
  148.         (infos)
  149.     )
  150. )
  151.  
  152. (set where (tackon BurnIt-dest "BurnIt"))
  153. (set @default-dest where)
  154.  
  155. (if (IN install-files 1)
  156.     (set guide-dest @default-dest)
  157. )
  158.  
  159. (set languages 0)
  160.  
  161. (if (IN install-files 2)
  162.     (set lang
  163.         (askoptions
  164.             (prompt  #which-language)
  165.             (help    @askoptions-help)
  166.             (choices
  167.                 "English"
  168.                 "Deutsch"
  169.             )
  170.             (default default-lang)
  171.         )
  172.     )
  173. )
  174.  
  175. ; And now do the actual installation
  176.  
  177. (complete 0)
  178.  
  179. (if (IN install-files 0)
  180.     (copyfiles
  181.         (prompt #copy "BurnIt")
  182.         (help @copyfiles-help)
  183.         (source "BurnIt")
  184.         (dest "T:")
  185.         (infos)
  186.         (confirm)
  187.     )
  188. )
  189.  
  190. (complete 25)
  191.  
  192. (if (IN install-files 0)
  193.     (copyfiles
  194.         (prompt (#copy "BurnIt" @default-dest))
  195.         (source "T:BurnIt")
  196.         (dest   @default-dest)
  197.         (help   @copyfiles-help)
  198.         (infos)
  199.         (noposition)
  200.         (confirm)
  201.     )
  202. )
  203.  
  204. (if (IN install-files 0)
  205.     (delete "T:BurnIt"
  206.         (delopts (infos))
  207.     )
  208. )
  209.  
  210. (if (IN install-files 0)
  211.     (copylib
  212.         (prompt (#copy "asyncio.library" "Libs:"))
  213.         (help @copylib-help)
  214.         (source "asyncio.library")
  215.         (dest "Libs:")
  216.         (confirm)
  217.     )
  218. )
  219.  
  220. (complete 50)
  221.  
  222. (if (IN install-files 1)
  223.     (
  224.         (copyfiles
  225.             (prompt (#copy #item-BurnIt-guide guide-dest))
  226.             (source #item-BurnIt-guide)
  227.             (help   @copyfiles-help)
  228.             (dest   guide-dest)
  229.             (newname "BurnIt.guide")
  230.             (noposition)
  231.             (infos)
  232.             (confirm)
  233.         )
  234.     )
  235. )
  236.  
  237. (complete 75)
  238.  
  239. (if (IN install-files 2)
  240.     (
  241.         (set n 0)
  242.  
  243.         (while
  244.             (set language
  245.                 (select n
  246.                     "English"
  247.                     "Deutsch"
  248.                     ""
  249.                 )
  250.             )
  251.  
  252.             (
  253.                 (if (AND (IN lang n) (<> 0 n))
  254.                     (
  255.                         (set catalog
  256.                             (tackon "Catalogs"
  257.                                 (tackon language "BurnIt.catalog")
  258.                             )
  259.                         )
  260.                         (set destination (tackon "Locale:Catalogs" language))
  261.  
  262.                         (copyfiles
  263.                             (prompt (#copy catalog destination))
  264.                             (source catalog)
  265.                             (dest   destination)
  266.                             (help @copyfiles-help)
  267.                         )
  268.                     )
  269.                 )
  270.  
  271.                 (set n (+ n 1))
  272.             )
  273.         )
  274.     )
  275. )
  276. (set BurnIticon-dest (tackon @default-dest "BurnIt"))
  277.  
  278. (complete 100)
  279. (exit)
  280.