summaryrefslogblamecommitdiff
path: root/sysutils/cd-write/pkg-install
blob: 992296d564eaf7e84d7c9f81fa7d2d6b7386ae26 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                       
#!/bin/sh
if [ "$2" != "POST-INSTALL" ]; then
  exit 0
fi
if [ -e ${PREFIX}/bin/mkisofs ]; then
  exit 0
fi
cat <<EOF
*********************** Warning ***********************
It seems that mkisofs is not installed on your system.
You will only be able to burn audio disks or to copy
data disks.
Mkisofs is required if you want to create a filesystem
image.
*******************************************************
EOF

exit 0