1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
#!/bin/sh
echo $1 | grep -i -q help
if [ "$?" = 0 ]
then
echo 'usage: install.sh path'
echo 'If path parameter is not supplied, /usr/bin will be used'
exit 1
fi
if [ "$1" = "" ]
then
INSTALL_PATH=/usr/bin
else
INSTALL_PATH=$1
fi
if [ ! -d $INSTALL_PATH ]
then
echo Destination path does not exist or it is not a directory
echo "*** INSTALL UNSUCCESSFUL ***"
exit 1
fi
# First of all, test if ImageMagick suite is available
my_error='0'
echo Checking ImageMagick suite
echo -n " Is 'convert' present ? "
convert 1> /dev/null 2>/dev/null
if [ $? = '0' ]
then
my_test=`convert | grep '@(#)ImageMagick' | awk '{ print $2 }'`
if [ "$my_test" = "@(#)ImageMagick" ]
then
echo ' Yes'
else
echo ' No'
my_error='1'
fi
else
echo ' No'
my_error='1'
fi
echo -n " Is 'identify' present ?"
identify 1> /dev/null 2>/dev/null
if [ $? = '0' ]
then
my_test=`identify | grep '@(#)ImageMagick' | awk '{ print $2 }'`
if [ "$my_test" = "@(#)ImageMagick" ]
then
echo ' Yes'
else
echo ' No'
my_error='1'
fi
else
echo ' No'
my_error='1'
fi
echo
echo Checking Perl
echo -n " Is Perl present ? "
perl -v 1> /dev/null 2>/dev/null
if [ $? = '0' ]
then
echo ' Yes'
else
echo ' No'
my_error='2'
fi
if [ "$my_error" = "1" ]
then
echo 'Ooops sorry but ImageMagick was not found in this system. Check http://www.imagemagick.org'
echo You can\'t run Galrey.
echo "*** INSTALL UNSUCCESSFUL ***"
exit 1
fi
if [ "$my_error" = "2" ]
then
echo 'Ooops sorry but Perl was not found in this system. Check http://www.perl.org'
echo You can\'t run Galrey.
echo "*** INSTALL UNSUCCESSFUL ***"
exit 1
fi
# ImageMagick is present
echo
echo Copying galrey.pl in $INSTALL_PATH
install galrey.pl $INSTALL_PATH 2>/dev/null
if [ "$?" != "0" ]
then
echo Ooops... you can\'t write in $INSTALL_PATH. Perhaps you need to be root ?
echo
echo "*** INSTALL UNSUCCESSFUL ***"
echo
exit 1
fi
echo Copying galrey.rc in /etc
install galrey.rc /etc 2>/dev/null
if [ "$?" = "0" ]
then
echo
echo "Done. Have fun with Galrey !"
echo "(but first read README !)"
else
echo Ooops... you can\'t write in /etc. Perhaps you need to be root ?
echo
echo "*** INSTALL UNSUCCESSFUL ***"
echo
fi
|