Created
May 19, 2012 20:53
-
-
Save lithid/2732343 to your computer and use it in GitHub Desktop.
Download updated lwjgl library for minecraft
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Written by Lithid | |
URL="http://downloads.sourceforge.net/project/java-game-lib/Official%20Releases/LWJGL%202.6/lwjgl-2.6.zip" | |
FILE="lwjgl-2.6.zip" | |
FOLDER="lwjgl-2.6" | |
DIR="$HOME/.minecraft" | |
if [ -d $DIR ]; then | |
cd $DIR | |
wget $URL | |
unzip $FILE | |
cp $FOLDER/jar/* $DIR/bin/ | |
cp $FOLDER/native/linux/* $DIR/bin/natives/ | |
rm -rf $FILE $FOLDER | |
else | |
echo "Your minecraft config dir doesn't exist, can't do anything to help. Sorry" | |
exit 1 | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment