blob: 12322feddf14547a8cd3ad54ab2654c670a64d1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ "$2" != POST-INSTALL ] ; then
exit 0
fi
install -d ${PKG_PREFIX}/lib/perl5/site_perl/${JPERL_VER}/${JPERL_ARCH}
cd /usr/include && ${PREFIX:-/usr/local}/bin/h2ph *.h machine/*.h sys/*.h
exit 0
|