srequest.in
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:1k
- # $Id: srequest.in,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $
- trap 'exit 3' 15
- # determine if man & html pages should be installed
- ans=`ckyorn -d y
- -p "Should the man pages included in this package be installed" ` || exit $?
- if [ "$ans" = y ]
- then
- CLASSES="$CLASSES man"
- fi
- if [ "@HTML@" = yes ]
- then
- # determine if html man pages should be installed
- ans=`ckyorn -d y
- -p "Should the html pages included in this package be installed" ` || exit $?
- if [ "$ans" = y ]
- then
- CLASSES="$CLASSES html"
- fi
- fi
- # make parameters available to installation service,
- # and so to any other packaging scripts
- cat >$1 <<!
- CLASSES='$CLASSES'
- !
- exit 0