home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Converter / MPIMAGE51.LZX / Install-MPImage < prev    next >
Encoding:
Text File  |  1996-10-02  |  4.9 KB  |  250 lines

  1. ; MPImage - Amiga Image Conversion
  2. ; Copyright (C) © 1996 Mark John Paddock
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; any later version.
  8.  
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13.  
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. ; mark@topic.demon.co.uk
  19. ; mpaddock@cix.compulink.co.uk
  20. ; MPImage - Amiga Image program
  21. ; Copyright (C) © 1993-96 Mark John Paddock
  22.  
  23. ; mark@topic.demon.co.uk
  24. ; mpaddock@cix.compulink.co.uk
  25.  
  26. ; This is the script to install MPImage
  27. ; $VER: Install-MPImage 5.1 (1.10.96)
  28.  
  29. (complete 0)
  30.  
  31. ; Determine machine config
  32. (Set Use040
  33.     (= 
  34.         (database "cpu")
  35.         68040
  36.     )
  37. )
  38.  
  39. (Set Has881
  40.     (+
  41.         (AND
  42.             (NOT (run "cpu check 68881"))
  43.             (>=
  44.                 (database "cpu")
  45.                 68020
  46.             )
  47.         )
  48.         Use040
  49.     )
  50. )
  51.  
  52. (Set Has881
  53.     (+
  54.         (>=
  55.             (database "cpu")
  56.             68020
  57.         )
  58.         Has881
  59.     )
  60. )
  61.  
  62. (Set InstallDir (expandpath ""))
  63.  
  64. (Set DestLib
  65.     (tackon InstallDir "MPImage.library")
  66. )
  67.  
  68. ; Check choice of program to install
  69. (set Use881
  70.     (askchoice
  71.         (prompt "Install which version?")
  72.         (help "There are three versions of the MPImage.library. "
  73.                 "The first requires just a 68000. "
  74.                 "The second requires a 68020. "
  75.                 "The third requires both a 68020 or 68030 CPU with a 68881 or 68882 FPU. "
  76.                 "The last requires a 68040.")
  77.         (choices
  78.             "68000"
  79.             "68020"
  80.             "68020/030/68881/2"
  81.             "68040"
  82.         )
  83.         (default Has881)
  84.     )
  85. )
  86.  
  87. (if (= Use881 3)
  88.     (
  89.          (set SrcLib
  90.             (tackon InstallDir "MPImage.library.040")
  91.          )
  92.         (copyfiles
  93.             (source SrcLib)
  94.             (dest InstallDir)
  95.             (newname DestLib)
  96.         )
  97.     )
  98. )
  99.  
  100. (if (= Use881 2)
  101.     (
  102.          (set SrcLib
  103.             (tackon InstallDir "MPImage.library.881")
  104.          )
  105.         (copyfiles
  106.             (source SrcLib)
  107.             (dest InstallDir)
  108.             (newname DestLib)
  109.         )
  110.     )
  111. )
  112.  
  113. (if (= Use881 1)
  114.     (
  115.          (set SrcLib
  116.             (tackon InstallDir "MPImage.library.020")
  117.          )
  118.         (copyfiles
  119.             (source SrcLib)
  120.             (dest InstallDir)
  121.             (newname DestLib)
  122.         )
  123.     )
  124. )
  125.  
  126. (if (= Use881 0)
  127.     (
  128.          (set SrcLib
  129.             (tackon InstallDir "MPImage.library.000")
  130.          )
  131.         (copyfiles
  132.             (source SrcLib)
  133.             (dest InstallDir)
  134.             (newname DestLib)
  135.         )
  136.     )
  137. )
  138.  
  139. (complete 50)
  140.  
  141. (if
  142.     (askbool
  143.         (prompt "Do you have djpeg and cjpeg?")
  144.         (help "Select 'Yes' if you have cjpeg and djpeg and you wish to "
  145.                 "use them to load and save jpeg files.")
  146.           (default 0)
  147.     )
  148.     (
  149.         (makedir
  150.             "ENV:MPImage"
  151.         )
  152.         (makedir
  153.             "ENVARC:MPImage"
  154.         )
  155.         (set cjpeg
  156.             (askstring
  157.                 (prompt "Enter your command to run cjpeg")
  158.                 (help '"%s" should be used to in place of the input and '
  159.                         "output files. Depending on how cjpeg was compiled "
  160.                         "you may/may not need to supply < before the input file "
  161.                         "and/or > before the output file.")
  162.                 (default 'cjpeg "%s" "%s"')
  163.             )
  164.         )
  165.         (textfile
  166.             (dest "ENV:MPImage/cjpeg")
  167.             (append cjpeg)
  168.         )
  169.         (textfile
  170.             (dest "ENVARC:MPImage/cjpeg")
  171.             (append cjpeg)
  172.         )
  173.         (set djpeg
  174.             (askstring
  175.                 (prompt "Enter your command to run djpeg")
  176.                 (help '"%s" should be used to in place of the input and '
  177.                         "output files. Depending on how djpeg was compiled "
  178.                         "you may/may not need to supply < before the input file "
  179.                         "and/or > before the output file.")
  180.                 (default 'djpeg "%s" "%s"')
  181.             )
  182.         )
  183.         (textfile
  184.             (dest "ENV:MPImage/djpeg")
  185.             (append djpeg)
  186.         )
  187.         (textfile
  188.             (dest "ENVARC:MPImage/djpeg")
  189.             (append djpeg)
  190.         )
  191.     )
  192. )
  193.  
  194. (complete 75)
  195.  
  196. (if
  197.     (askbool
  198.         (prompt "Do you have pngtopnm and pnmtopng?")
  199.         (help "Select 'Yes' if you have pngtopnm and pnmtopng and you wish to "
  200.                 "use them to load and save PNG files.")
  201.           (default 0)
  202.     )
  203.     (
  204.         (makedir
  205.             "ENV:MPImage"
  206.         )
  207.         (makedir
  208.             "ENVARC:MPImage"
  209.         )
  210.         (set pnmtopng
  211.             (askstring
  212.                 (prompt "Enter your command to run pnmtopng")
  213.                 (help '"%s" should be used to in place of the input and '
  214.                         "output files. Depending on how pnmtopng was compiled "
  215.                         "you may/may not need to supply < before the input file "
  216.                         "and/or > before the output file.")
  217.                 (default 'pnmtopng "%s" >"%s"')
  218.             )
  219.         )
  220.         (textfile
  221.             (dest "ENV:MPImage/pnmtopng")
  222.             (append pnmtopng)
  223.         )
  224.         (textfile
  225.             (dest "ENVARC:MPImage/pnmtopng")
  226.             (append pnmtopng)
  227.         )
  228.         (set pngtopnm
  229.             (askstring
  230.                 (prompt "Enter your command to run pngtopnm")
  231.                 (help '"%s" should be used to in place of the input and '
  232.                         "output files. Depending on how pngtopnm was compiled "
  233.                         "you may/may not need to supply < before the input file "
  234.                         "and/or > before the output file.")
  235.                 (default 'pngtopnm "%s" >"%s"')
  236.             )
  237.         )
  238.         (textfile
  239.             (dest "ENV:MPImage/pngtopnm")
  240.             (append pngtopnm)
  241.         )
  242.         (textfile
  243.             (dest "ENVARC:MPImage/pngtopnm")
  244.             (append pngtopnm)
  245.         )
  246.     )
  247. )
  248.  
  249. (complete 100)
  250.