home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextLibrary / Receipts / EODeveloper.pkg / EODeveloper.pre_install < prev    next >
Encoding:
Text File  |  1994-12-06  |  263 b   |  16 lines

  1. #!/bin/csh -f
  2.  
  3. # EODeveloper.pre_install
  4.  
  5. echo ""
  6.  
  7. echo -n "        Checking developer software ... "
  8. if ( ! -f /bin/cc ) then
  9.     echo "This package requires the NEXTSTEP Developer Software be installed."
  10.     exit 1
  11. endif
  12. echo "OK."
  13.  
  14. echo "    ... done."
  15. exit 0
  16.