Perl: add metadata and fix dependency
authorMichael Lauer <mickey@vanille-media.de>
Mon, 29 Mar 2004 19:48:57 +0000 (19:48 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Mon, 29 Mar 2004 19:48:57 +0000 (19:48 +0000)
BKrev: 40687da9IPMXcW0cn55y6QRgSh40kQ

perl/perl_5.8.3.oe

index e69de29..5982d7f 100644 (file)
@@ -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
+}