32 |
|
%install |
33 |
|
make install |
34 |
|
|
35 |
+ |
mkdir -p %i/conf |
36 |
+ |
cat << \EOF > %i/conf/mod_perl2.conf |
37 |
+ |
LoadModule perl_module %i/modules/mod_perl2.so |
38 |
+ |
# Additional configuration bits go here. |
39 |
+ |
EOF |
40 |
+ |
|
41 |
|
# By default mod_perl.so and include/ directory is moved to the |
42 |
|
# $APACHE2_ROOT/modules and $APACHE2_ROOT/include, respectively, which |
43 |
|
# is bad for us handling multiple versions in a rpm. With |
46 |
|
# move these resources back to a sane location and clean up. |
47 |
|
mv %i/$APACHE2_ROOT/* %i |
48 |
|
rm -r %i/$(echo $APACHE2_ROOT | sed 's|^/||' | cut -d/ -f1) |
49 |
+ |
|
50 |
+ |
%post |
51 |
+ |
%{relocateConfig}conf/mod_perl2.conf |