Files
i2p.itoopie/core/c/mbuild.sh
sponge 0c98d1843a Sponge fixes and additions patch:
* 3 New jbigi build scripts and old ones fixed to work properly.
    * Some trivial BOB work.
2009-03-30 05:31:40 +00:00

29 lines
401 B
Bash
Executable File

#/bin/bash
JBIGI=../../../installer/lib/jbigi/jbigi.jar
if [ -f jbigi.jarx ] ; then
JBIGI=../jbigi.jar
fi
(cd jcpuid ; sh build.sh ; cd ..)
(cd jbigi ; sh mbuild-all.sh ; cd ..)
mkdir t
(
cd t
jar xf ../../../installer/lib/jbigi/jbigi.jar
)
cp jbigi/lib/net/i2p/util/* t/
cp jcpuid/lib/freenet/support/CPUInformation/* t/
(
cd t
jar cf ../jbigi.jar .
)
rm -R t
echo "jbigi.jar Refreshed."