1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
MAINTAINER="David Karlstrom <daka@thg.se>"
include perl.inc
SRC_URI += "file://config.sh-armeb-linux"
PR = "r5"
do_configure() {
ln -sf ${HOSTPERL} ${STAGING_BINDIR}/hostperl
cp ${HOSTPERL} hostperl
cd Cross
rm Makefile.SH.patch
cp ${WORKDIR}/Makefile.SH.patch .
cp ${WORKDIR}/config.sh-mipsel-linux .
cp ${WORKDIR}/config.sh-i686-linux .
cp ${WORKDIR}/config.sh-armeb-linux .
for i in config.sh-*-linux; do
a="`echo $i|sed -e 's,^config.sh-,,; s,-linux$,,'`"
newfile="`echo $i|sed -e 's,-linux$,-linux-uclibc,g'`"
cat $i | sed -e "s,${a}-linux,${a}-linux-uclibc,g; \
s,d_sockatmark='define',d_sockatmark='undef',g;" > $newfile
done
sed -i -e 's,./install_me_here,${D},g' config.sh-${TARGET_ARCH}-${TARGET_OS}
rm -f config
echo "ARCH = ${TARGET_ARCH}" > config
echo "OS = ${TARGET_OS}" >> config
oe_runmake patch
}
do_install_append() {
ln -s libperl.so.${PV} ${D}/${libdir}/libperl.so.5
}
# Create a perl-modules package depending on all the other perl
# packages (actually the non modules packages too)
# This means creating lots of empty packages too, so its set to only
# openslug for the time beeing
ALLOW_EMPTY_openslug = 1
PACKAGES_append_openslug = " perl-modules"
RDEPENDS_perl-modules_openslug = "${PACKAGES}"
RPROVIDES_perl-lib_openslug = "perl-lib"
|