47329499f6
As before, this is a "guru only" port. If you know what you are doing, go ahead and use it. If not - HANDS OFF! Perl 5.6.1 will be committed to "base" FreeBSD in a week or 2.
14 lines
207 B
Bash
14 lines
207 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != POST-INSTALL ] ; then
|
|
exit 0
|
|
fi
|
|
|
|
INCLUDEDIR=/usr/include
|
|
|
|
install -d ${PREFIX}/lib/perl5/site_perl/5.6.0/arch
|
|
cd ${INCLUDEDIR} && ${PREFIX}/bin/h2ph *.h machine/*.h sys/*.h
|
|
|
|
|
|
exit 0
|