diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/classes/cpan.bbclass | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/cpan.bbclass')
-rw-r--r-- | meta/classes/cpan.bbclass | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/classes/cpan.bbclass b/meta/classes/cpan.bbclass new file mode 100644 index 0000000000..853abfd1b3 --- /dev/null +++ b/meta/classes/cpan.bbclass | |||
@@ -0,0 +1,20 @@ | |||
1 | FILES_${PN} += '${libdir}/perl5' | ||
2 | |||
3 | cpan_do_configure () { | ||
4 | perl Makefile.PL | ||
5 | if [ "${BUILD_SYS}" != "${HOST_SYS}" ]; then | ||
6 | . ${STAGING_DIR}/${TARGET_SYS}/perl/config.sh | ||
7 | sed -e "s:\(SITELIBEXP = \).*:\1${sitelibexp}:; s:\(SITEARCHEXP = \).*:\1${sitearchexp}:; s:\(INSTALLVENDORLIB = \).*:\1${D}${libdir}/perl5:; s:\(INSTALLVENDORARCH = \).*:\1${D}${libdir}/perl5:" < Makefile > Makefile.new | ||
8 | mv Makefile.new Makefile | ||
9 | fi | ||
10 | } | ||
11 | |||
12 | cpan_do_compile () { | ||
13 | oe_runmake PASTHRU_INC="${CFLAGS}" | ||
14 | } | ||
15 | |||
16 | cpan_do_install () { | ||
17 | oe_runmake install_vendor | ||
18 | } | ||
19 | |||
20 | EXPORT_FUNCTIONS do_configure do_compile do_install | ||