blob: afd42c840182204ac3deb8f96997d500561686f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
PERL5LIB="$PERL5LIB${PERL5LIB:+:}$out/lib/perl5/site_perl"
perlUseLibs='use lib'
for i in $(IFS=:; echo $PERL5LIB); do
perlUseLibs="$perlUseLibs \"$i\","
done
perlUseLibs=$(echo "$perlUseLibs" | sed 's/,$/;/')
oldPreConfigure="$preConfigure"
preConfigure() {
eval "$oldPreConfigure"
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..."
sed -i "$fn" -e "s|^#\!\(.*\bperl\b.*\)$|#\!\1\n$perlUseLibs|"
fi
fi
done
local flagsArray=()
concatTo flagsArray makeMakerFlags
# Perl expect these to be exported
export CPPRUN="$CC -E"
export FULL_AR=$AR
# Requires to be $CC since it tries adding "-Wl"
export LD=$CC
perl Makefile.PL AR="$AR" FULL_AR="$AR" CC="$CC" LD="$CC" CPPRUN="$CPPRUN" \
PREFIX=$out INSTALLDIRS=site "${flagsArray[@]}" \
PERL=$(type -P perl) FULLPERL=\"$fullperl/bin/perl\"
}
if test -n "$perlPreHook"; then
eval "$perlPreHook"
fi
genericBuild
if test -n "$perlPostHook"; then
eval "$perlPostHook"
fi
|