aboutsummaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-03-29 19:48:57 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-03-29 19:48:57 +0000
commit98e1f73a0cc6a615a209d3360eb9a99853224428 (patch)
treec6c60aa9a809afbec08757158cf2d9a70b57cf6c /perl
parent6593918572ea5778e4e67abd88ed646563ac4dff (diff)
downloadopenembedded-98e1f73a0cc6a615a209d3360eb9a99853224428.tar.gz
Perl: add metadata and fix dependency
BKrev: 40687da9IPMXcW0cn55y6QRgSh40kQ
Diffstat (limited to 'perl')
-rw-r--r--perl/perl_5.8.3.oe23
1 files changed, 23 insertions, 0 deletions
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
+}