Sponge fixes and additions patch:

* 3 New jbigi build scripts and old ones fixed to work properly.
    * Some trivial BOB work.
This commit is contained in:
sponge
2009-03-30 05:31:40 +00:00
parent 4a9543be78
commit 0c98d1843a
11 changed files with 245 additions and 27 deletions

28
core/c/mbuild.sh Executable file
View File

@@ -0,0 +1,28 @@
#/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."