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

exit 0
