mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
11 lines
204 B
Plaintext
11 lines
204 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$2" != POST-INSTALL ] ; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
install -d ${PKG_PREFIX}/lib/perl5/site_perl/5.005/i386-freebsd
|
||
|
cd /usr/include && ${PREFIX:-/usr/local}/bin/h2ph *.h machine/*.h sys/*.h
|
||
|
|
||
|
exit 0
|