067726f3e2
a big problem, so I decided to require to user to get the file and put it in some location in the file system. wget doesn't seem to accept the file scheme however, so I had to move the copying into the builder itself. The builder checks the md5 hash of the downloaded file. Maybe having a separate 'fetchfile' would be useful to make a file in the outside world pure. I tried to add this to build-support, but this obviously did not work. I still committed it. Just remove it if you think that it sucks. svn path=/nixpkgs/trunk/; revision=716
23 lines
356 B
Bash
Executable file
23 lines
356 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. $stdenv/setup || exit 1
|
|
version=j2sdk1.4.2_03
|
|
src=$version.bin
|
|
|
|
cp $pathname $src || exit 1
|
|
|
|
actual=$(md5sum -b $src | cut -c1-32)
|
|
if test "$actual" != "$md5"; then
|
|
echo "hash is $actual, expected $md5"
|
|
exit 1
|
|
fi
|
|
|
|
chmod u+x $src || exit 1
|
|
|
|
alias more=cat
|
|
|
|
yes yes | ./$src || exit 1
|
|
|
|
mkdir $out || exit 1
|
|
mv $version/* $out/ || exit 1
|