File: crequest.in

package info (click to toggle)
hylafax 1%3A4.2.1-5sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,788 kB
  • ctags: 7,523
  • sloc: sh: 15,597; ansic: 13,040; makefile: 1,772; cpp: 864
file content (22 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: crequest.in,v 1.1.1.1 1998/10/12 20:47:50 root Exp $
trap 'exit 3' 15
# determine if libraries 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 [ "@AFM@" = yes ]
then
        CLASSES="$CLASSES fonts"
fi

# make parameters available to installation service,
# and so to any other packaging scripts
cat >$1 <<!
CLASSES='$CLASSES'
!
exit 0