399d23373e
* Add an MD5 hash for the downloaded files. * Rename some files. svn path=/nixpkgs/trunk/; revision=2267
15 lines
224 B
Bash
15 lines
224 B
Bash
set -e
|
|
|
|
$bunzip2 -d < $tarball | $tar xvf -
|
|
|
|
$cp -prd * $out
|
|
|
|
if test -n "$postProcess"; then
|
|
for i in $addToPath; do
|
|
export PATH=$PATH:$i/bin
|
|
done
|
|
for i in $postProcess; do
|
|
source $i
|
|
done
|
|
fi
|