From: Michael Lauer Date: Mon, 29 Mar 2004 19:48:57 +0000 (+0000) Subject: Perl: add metadata and fix dependency X-Git-Tag: Release-2010-05/1~19830 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98e1f73a0cc6a615a209d3360eb9a99853224428;p=openembedded.git Perl: add metadata and fix dependency BKrev: 40687da9IPMXcW0cn55y6QRgSh40kQ --- diff --git a/perl/perl_5.8.3.oe b/perl/perl_5.8.3.oe index e69de29bb2..5982d7f0e2 100644 --- a/perl/perl_5.8.3.oe +++ b/perl/perl_5.8.3.oe @@ -0,0 +1,23 @@ +DESCRIPTION = "Perl is a popular scripting language." +SECTION = "developing" +PRIORITY = "optional" +RDEPENDS = "libc6 db3" +DEPENDS = "virtual/libc db3 perl-native" +SRC_URI = "http://ftp.funet.fi/pub/CPAN/src/perl-${PV}.tar.gz" + +do_configure() { + cd Cross + oe_runmake patch +} + +do_compile() { + cd Cross + oe_runmake perl +} + +do_install() { + rm -rf install_me_here + make install + mv install_me_here/* ${D} + rmdir install_me_here +}