7ee62b0bd9
svn path=/nixpkgs/trunk/; revision=1593
18 lines
305 B
Bash
18 lines
305 B
Bash
. $stdenv/setup
|
|
|
|
installFlags="PREFIX=$out"
|
|
|
|
preInstall=preInstall
|
|
preInstall() {
|
|
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
|