desktop/smile/smile.install
Manuel Tortosa a1e3ea39bd Adding smile
2010-06-02 17:08:25 +00:00

40 lines
1.6 KiB
Plaintext

# arg 1: the new package version
post_install() {
/bin/true
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
echo ">>>"
echo ">>> You can find documentation at http://smile.tuxfamily.org/HELP/doc_en.html"
echo ">>>"
if [ `vercmp $2 0.8.0` -lt 0 ]; then
echo ">>>"
echo ">>> You appear to upgrading SMILE from a version lower than 0.8.0"
echo ">>> to version 0.8.0 or above."
echo ">>> If this is really your situation, you shouldn't use your old"
echo ">>> project files because new format."
echo ">>>"
fi
if [ `vercmp $2 1.0` -lt 0 ]; then
echo "********************* IMPORTANT UPGRADE NOTICE *********************"
echo "* *"
echo "* You appear to be upgrading SMILE from a version lower than 1.0 *"
echo "* to version 1.0 (or higher). *"
echo "* If this is really your situation, you must remove the file *"
echo "* .smile.cnf from your home directory BEFORE USING THE APLICATION *"
echo "* *"
echo "********************************************************************"
echo "* *"
echo "* You can do it by executing (logged as your normal user): *"
echo "* rm ~/.smile.cnf *"
echo "* *"
echo "********************************************************************"
fi
}
op=$1
shift
$op $*