srequest.in
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. # $Id: srequest.in,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $
  2. trap 'exit 3' 15
  3. # determine if man & html pages should be installed
  4. ans=`ckyorn -d y 
  5.         -p "Should the man pages included in this package be installed" ` || exit $?
  6. if [ "$ans" = y ]
  7. then
  8.         CLASSES="$CLASSES man"
  9. fi
  10. if [ "@HTML@" = yes ]
  11. then
  12. # determine if html man pages should be installed
  13. ans=`ckyorn -d y 
  14.         -p "Should the html pages included in this package be installed" ` || exit $?
  15. if [ "$ans" = y ]
  16. then
  17.          CLASSES="$CLASSES html"
  18. fi
  19. fi
  20. # make parameters available to installation service,
  21. # and so to any other packaging scripts
  22. cat >$1 <<!
  23. CLASSES='$CLASSES'
  24. !
  25. exit 0