![Eelco Dolstra](/assets/img/avatar_default.png)
advantage is that we don't have to run the Sun installer (which is impure). TODO: make sure that all the other JDK versions still work. svn path=/nixpkgs/trunk/; revision=4029
39 lines
742 B
Bash
39 lines
742 B
Bash
source $stdenv/setup
|
|
|
|
src=$filename.bin
|
|
|
|
if ! test -e "$pathname"; then
|
|
echo ""
|
|
echo "SORRY!"
|
|
echo "You should download \`$(basename $pathname)' from Sun and place it in $(dirname $pathname)."
|
|
echo "Blame Sun, not us."
|
|
echo ""
|
|
exit 1
|
|
fi
|
|
|
|
actual=$(md5sum -b $pathname | cut -c1-32)
|
|
if test "$actual" != "$md5"; then
|
|
echo "hash is $actual, expected $md5"
|
|
exit 1
|
|
fi
|
|
|
|
unzip $pathname || true
|
|
|
|
ensureDir $out
|
|
mv $dirname/* $out/
|
|
|
|
# Remove crap in the root directory.
|
|
for file in $out/*
|
|
do
|
|
if test -f $file ; then
|
|
rm $file
|
|
fi
|
|
done
|
|
|
|
# Unpack .pack files.
|
|
for i in $(find $out -name "*.pack"); do
|
|
echo "unpacking $i..."
|
|
$out/bin/unpack200 "$i" "$(dirname $i)/$(basename $i .pack).jar"
|
|
rm "$i"
|
|
done
|