summaryrefslogtreecommitdiff
path: root/lang/perl5.16/pkg-install
blob: 252f6e48942e117b9c3e3cce7bf586a42cc8b3ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

if [ "$2" != POST-INSTALL ] ; then
	exit 0
fi

INCLUDEDIR=/usr/include

install -d ${PKG_PREFIX}/lib/perl5/site_perl/5.8.0/mach
cd ${INCLUDEDIR} && ${PKG_PREFIX}/bin/h2ph *.h machine/*.h sys/*.h


exit 0