ForgePatch/forge/install/install.sh

55 lines
1.1 KiB
Bash
Raw Normal View History

2011-10-11 22:38:39 +00:00
#!/bin/bash
echo "MinecraftForge Linux Setup Program"
echo
if [ ! -f ../runtime/bin/fernflower.jar]
then
python download_fernflower.py
fi
if [ ! -f ../runtime/bin/fernflower.jar]
then
echo "Failed to download fernflower, install it manually and re-run setup."
exit 1
fi
2011-10-11 22:38:39 +00:00
pushd .. > /dev/null
rm -rf conf
mkdir conf
cp -r forge/conf/* conf
2011-10-11 22:38:39 +00:00
./cleanup.sh
./decompile.sh
2011-10-11 22:38:39 +00:00
pushd src > /dev/null
if [ -f ../jars/bin/minecraft.jar ];
then
cp ../forge/MLProp.java minecraft/net/minecraft/src/MLProp.java
for i in `find ../forge/patches/minecraft/ -type f`
do
patch -p2 -i $i
done
cp -r ../forge/src/minecraft/* minecraft
fi
if [ -f ../jars/minecraft_server.jar ];
then
cp ../forge/MLProp.java minecraft_server/net/minecraft/src/MLProp.java
patch -p2 -i ../forge/modLoaderMP.patch
for i in `find ../forge/patches/minecraft_server/ -type f`
do
patch -p2 -i $i
done
cp -r ../forge/src/minecraft_server/* minecraft_server
fi
2011-10-11 22:38:39 +00:00
popd > /dev/null
./updatemcp.sh -f
./updatenames.sh -f
./updatemd5.sh -f