diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-12-20 08:08:32 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-12-20 08:08:32 +0000 |
commit | 41b0b5c0ed80d812d13c8c92d286a8663084ec58 (patch) | |
tree | 26e968bb48a886bccf8aa17e8064e6f3b8f2bc5d /GenDeb.sh | |
parent | 1883b8b5e20506e41f31bdf6b802fbfd3f63f961 (diff) | |
download | mana-41b0b5c0ed80d812d13c8c92d286a8663084ec58.tar.gz mana-41b0b5c0ed80d812d13c8c92d286a8663084ec58.tar.bz2 mana-41b0b5c0ed80d812d13c8c92d286a8663084ec58.tar.xz mana-41b0b5c0ed80d812d13c8c92d286a8663084ec58.zip |
Updated Debian package, some fixes, new classes for the new graphic engine
Diffstat (limited to 'GenDeb.sh')
-rwxr-xr-x | GenDeb.sh | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -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..."; |