nixpkgs/pkgs/development/tools/misc/lcov/builder.sh
Martin Bravenboer d1e0c693c1 fix impurity of lcov install
svn path=/nixpkgs/trunk/; revision=7964
2007-02-21 11:40:12 +00:00

20 lines
375 B
Bash

source $stdenv/setup
installFlags="PREFIX=$out"
preInstall=preInstall
preInstall() {
substituteInPlace bin/install.sh --replace /bin/bash $shell
for i in bin/*; do
echo "fixing $i..."
sed -e "s^@PREFIX@^$out^" \
-e "s^@PERL@^$perl/bin/perl^" \
< $i > $i.tmp
mv $i.tmp $i
chmod +x $i
done
}
genericBuild