summaryrefslogtreecommitdiff
path: root/GenDeb.sh
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2004-12-20 08:08:32 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2004-12-20 08:08:32 +0000
commit41b0b5c0ed80d812d13c8c92d286a8663084ec58 (patch)
tree26e968bb48a886bccf8aa17e8064e6f3b8f2bc5d /GenDeb.sh
parent1883b8b5e20506e41f31bdf6b802fbfd3f63f961 (diff)
downloadmana-client-41b0b5c0ed80d812d13c8c92d286a8663084ec58.tar.gz
mana-client-41b0b5c0ed80d812d13c8c92d286a8663084ec58.tar.bz2
mana-client-41b0b5c0ed80d812d13c8c92d286a8663084ec58.tar.xz
mana-client-41b0b5c0ed80d812d13c8c92d286a8663084ec58.zip
Updated Debian package, some fixes, new classes for the new graphic engine
Diffstat (limited to 'GenDeb.sh')
-rwxr-xr-xGenDeb.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/GenDeb.sh b/GenDeb.sh
index befcb1c2..6ccb1302 100755
--- a/GenDeb.sh
+++ b/GenDeb.sh
@@ -14,7 +14,7 @@ make;
if [ ! -x ./tmw ]; # if tmw doesn't exist
then
- echo "Compilation failed somwhere. Please try to correct errors given by gcc output...";
+ echo "Compilation failed somewhere. Please try to correct errors given by gcc output...";
echo "Aborting...";
exit;
fi
@@ -91,7 +91,7 @@ touch DEBIAN/prerm;
echo '#!/bin/sh' >>DEBIAN/prerm;
echo 'if [ \( "$1" = "upgrade" -o "$1" = "remove" \) ]; then' >>DEBIAN/prerm;
echo ' if [ -d /usr/games ]; then' >>DEBIAN/prerm;
-echo ' rm -f /usr/games/manaworld;' >>DEBIAN/prerm;
+echo ' rm -rf /usr/games/manaworld;' >>DEBIAN/prerm;
echo ' fi' >>DEBIAN/prerm;
echo 'fi' >>DEBIAN/prerm;
@@ -104,7 +104,7 @@ echo 'Version: '$TMW_VERSION >>DEBIAN/control;
echo 'Section: bin' >>DEBIAN/control;
echo 'Priority: optional' >>DEBIAN/control;
echo 'Architecture: i386' >>DEBIAN/control;
-echo 'Depends: liballegro4.1 (>= 4.1), libjgmod (>= 0.99), libalfont (>= 1.9.2)' >>DEBIAN/control;
+echo 'Depends: liballegro4.1 (>= 4.1), libjgmod (>= 0.99), libguichan (>= 0.1.0)' >>DEBIAN/control;
echo 'Suggests: Nothing' >>DEBIAN/control;
echo 'Installed-Size: 1200' >>DEBIAN/control;
echo 'Maintainer: Ferreira Yohann <bertram25@hotmail.com>' >>DEBIAN/control;
@@ -138,6 +138,7 @@ echo "Cleaning ...";
rm -rf Debian;
echo "You Debian Package is normally ready :"
echo "His name is : manaworld_"$TMW_VERSION"_i386.deb";
-
+echo "Don't forget you need libjgmod and libguichan to install manaworld.";
+echo "You can find them in http://themanaworld.sourceforge.net/files";
echo "End of Debian Creation...";