2005-12-05 14:11:09 +00:00
|
|
|
source $stdenv/setup
|
2005-01-22 00:19:27 +00:00
|
|
|
|
2009-04-23 00:04:18 +01:00
|
|
|
PERL5LIB="$PERL5LIB${PERL5LIB:+:}$out/lib/perl5/site_perl"
|
2005-01-22 00:19:27 +00:00
|
|
|
|
|
|
|
perlFlags=
|
2009-02-12 15:56:35 +00:00
|
|
|
for i in $(IFS=:; echo $PERL5LIB); do
|
2005-01-22 00:19:27 +00:00
|
|
|
perlFlags="$perlFlags -I$i"
|
|
|
|
done
|
|
|
|
|
2008-10-20 04:58:49 +01:00
|
|
|
oldPreConfigure="$preConfigure"
|
2005-01-22 00:19:27 +00:00
|
|
|
preConfigure() {
|
|
|
|
|
2008-10-20 04:58:49 +01:00
|
|
|
eval "$oldPreConfigure"
|
|
|
|
|
2005-01-22 00:19:27 +00:00
|
|
|
find . | while read fn; do
|
|
|
|
if test -f "$fn"; then
|
|
|
|
first=$(dd if="$fn" count=2 bs=1 2> /dev/null)
|
|
|
|
if test "$first" = "#!"; then
|
|
|
|
echo "patching $fn..."
|
2017-12-15 18:07:56 +00:00
|
|
|
sed -i "$fn" -e "s|^#\!\(.*[ /]perl.*\)$|#\!\1$perlFlags|"
|
2005-01-22 00:19:27 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2018-03-20 12:43:21 +00:00
|
|
|
perl Makefile.PL PREFIX=$out INSTALLDIRS=site $makeMakerFlags PERL=$(type -P perl) FULLPERL=\"$perl/bin/perl\"
|
2005-01-22 00:19:27 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 11:04:56 +01:00
|
|
|
|
2007-03-13 13:32:17 +00:00
|
|
|
postFixup() {
|
|
|
|
# If a user installs a Perl package, she probably also wants its
|
|
|
|
# dependencies in the user environment (since Perl modules don't
|
|
|
|
# have something like an RPATH, so the only way to find the
|
|
|
|
# dependencies is to have them in the PERL5LIB variable).
|
2017-11-17 18:26:21 +00:00
|
|
|
if test -e $out/nix-support/propagated-build-inputs; then
|
|
|
|
ln -s $out/nix-support/propagated-build-inputs $out/nix-support/propagated-user-env-packages
|
2007-03-13 13:32:17 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2005-03-10 12:49:37 +00:00
|
|
|
if test -n "$perlPreHook"; then
|
2007-03-13 13:32:17 +00:00
|
|
|
eval "$perlPreHook"
|
2005-03-10 12:49:37 +00:00
|
|
|
fi
|
|
|
|
|
2005-01-22 00:19:27 +00:00
|
|
|
genericBuild
|
2005-03-10 12:49:37 +00:00
|
|
|
|
|
|
|
if test -n "$perlPostHook"; then
|
2007-03-13 13:32:17 +00:00
|
|
|
eval "$perlPostHook"
|
2005-12-05 14:11:09 +00:00
|
|
|
fi
|