c6f9031fe3
Noticed by: YAPHR
10 lines
212 B
Bash
10 lines
212 B
Bash
#!/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
|